Skip to content

Commit ae8904a

Browse files
authored
fix: Revert addition of visual error when commands cannot be found (#1055)
Didn't pay enough attention to the fact that this is eagerly invoked every time; probably not worth including. Signed-off-by: Chad Wilson <chadw@thoughtworks.com>
1 parent 75b3051 commit ae8904a

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"description": "Gauge support for VScode.",
99
"author": "ThoughtWorks",
1010
"license": "MIT",
11-
"version": "0.2.0",
11+
"version": "0.2.1",
1212
"publisher": "getgauge",
1313
"engines": {
1414
"vscode": "^1.82.0"

src/cli.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ export class CLI {
121121
for (const candidate of this.getCommandCandidates(command)) {
122122
if (this.checkSpawnable(candidate)) return candidate;
123123
}
124-
window.showErrorMessage(`Unable to find executable launch command: ${command}`);
125124
}
126125

127126
private static getGradleCommand() {

0 commit comments

Comments
 (0)