Skip to content

Commit

Permalink
fix(upgrade): add special devel fix for vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
Jguer committed Jul 25, 2021
1 parent 4a93199 commit e4a933d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ func printLocalNewerThanAUR(
}

func isDevelName(name string) bool {
for _, suffix := range []string{"git", "svn", "hg", "bzr", "nightly"} {
for _, suffix := range []string{"git", "svn", "hg", "bzr", "nightly", "insiders-bin"} {
if strings.HasSuffix(name, "-"+suffix) {
return true
}
Expand Down

0 comments on commit e4a933d

Please sign in to comment.