fix(core): update

This commit is contained in:
2019-08-27 20:15:22 +02:00
parent c8c0cbd47a
commit ad0b7ac21c
4 changed files with 38 additions and 33 deletions

View File

@ -122,7 +122,7 @@ export class Smartshell {
return (await this._exec(commandStringArg, false, true)) as IExecResult;
}
public async execStrictSilent (commandStringArg: string): Promise<IExecResult> {
public async execStrictSilent(commandStringArg: string): Promise<IExecResult> {
return (await this._exec(commandStringArg, true, true)) as IExecResult;
}