Skip to content

Commit

Permalink
Make Tool run not silent
Browse files Browse the repository at this point in the history
  • Loading branch information
ThadHouse committed Oct 18, 2018
1 parent 7c7fdb2 commit 11991bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vscode-wpilib/src/builtintools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ class VbsToolRunner implements IToolRunner {
return new Promise<boolean>((resolve, _reject) => {
if (getIsWindows()) {
// If windows, run the vbs script
cp.exec(`wscript.exe ${this.toolScript} silent`, (err) => {
cp.exec(`wscript.exe ${this.toolScript}`, (err) => {
if (err) {
resolve(false);
} else {
resolve(true);
}
});
} else {
// Unix, run as javaw
// Unix, run as java
cp.exec(`java -jar ${this.toolScript}`, (err) => {
if (err) {
resolve(false);
Expand Down

0 comments on commit 11991bd

Please sign in to comment.