We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f02bdaa + 9b1c36c commit 42e2cbaCopy full SHA for 42e2cba
package.json
@@ -2,7 +2,7 @@
2
"name": "vscode-gitflow",
3
"displayName": "Git Flow",
4
"description": "Git-Flow support for VS Code",
5
- "version": "1.3.13",
+ "version": "1.3.14",
6
"engines": {
7
"vscode": "^1.64.0"
8
},
src/lib/Util.ts
@@ -118,7 +118,7 @@ export class Util {
118
return false;
119
}
120
121
- if (this.execSync(`${this.flowPath}`).toLowerCase().search("is not a git command") !== -1) {
+ if (this.execSync(`${this.flowPath} version`).toLowerCase().search("is not a git command") !== -1) {
122
let installLink = "Install";
123
vscode.window
124
.showWarningMessage("To use Git Flow extension please install Git flow (AVH).", installLink)
0 commit comments