fix execution

This commit is contained in:
2017-03-11 02:57:46 +01:00
parent 349d79d58f
commit 3a16245545
2 changed files with 5 additions and 5 deletions

View File

@ -35,7 +35,7 @@ export class Smartshell {
*/
async execSilent (commandArg: string) {
let execCommand = this.createExecString(commandArg)
return await smartshellWrap.execSilent(commandArg)
return await smartshellWrap.execSilent(execCommand)
}
/**
@ -44,7 +44,7 @@ export class Smartshell {
*/
async exec (commandArg: string) {
let execCommand = this.createExecString(commandArg)
return await smartshellWrap.exec(commandArg)
return await smartshellWrap.exec(execCommand)
}
/**