Skip to content

Commit

Permalink
Merge branch 'release/1.3.14' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Serhioromano committed Aug 14, 2022
2 parents f02bdaa + 9b1c36c commit 42e2cba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-gitflow",
"displayName": "Git Flow",
"description": "Git-Flow support for VS Code",
"version": "1.3.13",
"version": "1.3.14",
"engines": {
"vscode": "^1.64.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export class Util {
return false;
}

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) {
let installLink = "Install";
vscode.window
.showWarningMessage("To use Git Flow extension please install Git flow (AVH).", installLink)
Expand Down

0 comments on commit 42e2cba

Please sign in to comment.