We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 309b827 + aaaac9d commit f02bdaaCopy full SHA for f02bdaa
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.12",
+ "version": "1.3.13",
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} status`).toLowerCase().search("is not a git command") !== -1) {
+ if (this.execSync(`${this.flowPath}`).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