Skip to content

Commit

Permalink
Merge branch 'release/1.3.13' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Serhioromano committed Aug 12, 2022
2 parents 309b827 + aaaac9d commit f02bdaa
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.12",
"version": "1.3.13",
"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} status`).toLowerCase().search("is not a git command") !== -1) {
if (this.execSync(`${this.flowPath}`).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 f02bdaa

Please sign in to comment.