From 4be4400436a07a13b6d897cf99cf83999aaa33ab Mon Sep 17 00:00:00 2001 From: ehmicky Date: Tue, 11 Jun 2019 02:01:13 -0700 Subject: [PATCH] Fix variable name bug (#282) --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index f7b4ef8ecc..b937e39c75 100644 --- a/index.js +++ b/index.js @@ -420,7 +420,7 @@ module.exports.sync = (file, args, options) => { result = childProcess.spawnSync(parsed.file, parsed.args, parsed.options); } catch (error) { throw makeError({error, stdout: '', stderr: '', all: ''}, { - joinedCommand, + command, parsed, timedOut: false, isCanceled: false,