update smartshell

This commit is contained in:
2017-03-11 02:41:18 +01:00
parent 2994a9ef5b
commit 0a73134e1c
4 changed files with 7 additions and 7 deletions

View File

@ -52,7 +52,7 @@ export let bash = async (commandArg: string, retryArg: number = 2, bareArg: bool
if (!process.env.NPMTS_TEST) { // NPMTS_TEST is used during testing
for (let i = 0; i <= retryArg; i++) {
if (!bareArg) {
execResult = await npmciSmartshell.execSilent(commandArg)
execResult = await npmciSmartshell.exec(commandArg)
} else {
execResult = await plugins.smartshell.exec(commandArg)
}