Skip to content

Commit 42e2cba

Browse files
committed
Merge branch 'release/1.3.14' into main
2 parents f02bdaa + 9b1c36c commit 42e2cba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-gitflow",
33
"displayName": "Git Flow",
44
"description": "Git-Flow support for VS Code",
5-
"version": "1.3.13",
5+
"version": "1.3.14",
66
"engines": {
77
"vscode": "^1.64.0"
88
},

src/lib/Util.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export class Util {
118118
return false;
119119
}
120120

121-
if (this.execSync(`${this.flowPath}`).toLowerCase().search("is not a git command") !== -1) {
121+
if (this.execSync(`${this.flowPath} version`).toLowerCase().search("is not a git command") !== -1) {
122122
let installLink = "Install";
123123
vscode.window
124124
.showWarningMessage("To use Git Flow extension please install Git flow (AVH).", installLink)

0 commit comments

Comments
 (0)