From 0222ab91c3ae1614434d64b9e6f9e2082607da17 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Tue, 7 Jun 2016 05:36:37 +0200 Subject: [PATCH] fix bash --- ts/npmci.bash.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/npmci.bash.ts b/ts/npmci.bash.ts index cd761a5..7e75000 100644 --- a/ts/npmci.bash.ts +++ b/ts/npmci.bash.ts @@ -14,7 +14,7 @@ export let bash = (commandArg:string,retryArg = 2,bareArg = false) => { "\"" ); } else { - execResult = plugins.shelljs.exec(bareArg); + execResult = plugins.shelljs.exec(commandArg); } exitCode = execResult.code; stdOut = execResult.stdout;