From a81ad0fef2a5098486bf841516b935fde31335f2 Mon Sep 17 00:00:00 2001 From: hacksalot Date: Mon, 18 Jan 2016 18:36:24 -0500 Subject: [PATCH] Tweak build command error condition. --- src/verbs/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/verbs/build.js b/src/verbs/build.js index 267b080..0e40cde 100644 --- a/src/verbs/build.js +++ b/src/verbs/build.js @@ -68,7 +68,7 @@ Implementation of the 'build' verb for HackMyResume. // Load input resumes as JSON... var sheetObjects = ResumeFactory.load(src, { - format: null, objectify: false, throw: true, inner: { sort: _opts.sort } + format: null, objectify: false, quit: true, inner: { sort: _opts.sort } }, this); var sheets = sheetObjects.map(function(r) { return r.json; });