Skip to content

Commit

Permalink
fix(projects): Fix version parsing for go executable.
Browse files Browse the repository at this point in the history
  • Loading branch information
jwalton committed Apr 10, 2022
1 parent 6d809c0 commit 0b2ce6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/kitsch/projects/defaultProjectTypes.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var DefaultProjectTypes = []ProjectType{
getters.CustomGetter{
Type: getters.TypeCustom,
From: "go version",
Regex: `go version go(\d+\.\d+\.\d+)`,
Regex: `go version go([\d+.]+)`,
Cache: getters.CacheSettings{Enabled: true},
},
},
Expand Down

0 comments on commit 0b2ce6b

Please sign in to comment.