Skip to content

Commit f02bdaa

Browse files
committed
Merge branch 'release/1.3.13' into main
2 parents 309b827 + aaaac9d commit f02bdaa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: 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.12",
5+
"version": "1.3.13",
66
"engines": {
77
"vscode": "^1.64.0"
88
},

Diff for: 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} status`).toLowerCase().search("is not a git command") !== -1) {
121+
if (this.execSync(`${this.flowPath}`).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)