Skip to content

Commit

Permalink
fix arguments error in executeCMD (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
Summer authored Apr 13, 2018
1 parent cea8b17 commit 43992ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tomcat/TomcatController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ export class TomcatController {
await fse.remove(appPath);
await fse.mkdirs(appPath);
Utility.trackTelemetryStep('deploy war');
await Utility.executeCMD(this._outputChannel, 'jar', serverInfo.getName(), { cwd: appPath }, 'xvf', `${packagePath}`);
await Utility.executeCMD(this._outputChannel, serverInfo.getName(), 'jar', { cwd: appPath }, 'xvf', `${packagePath}`);
vscode.commands.executeCommand('tomcat.tree.refresh');
}

Expand Down

0 comments on commit 43992ab

Please sign in to comment.