Skip to content

Commit

Permalink
Merge pull request #29 from wintermi/next
Browse files Browse the repository at this point in the history
Fix the grep warning: stray \ before "
  • Loading branch information
stefanmaric committed Oct 16, 2022
2 parents b448a1f + a6a38fa commit 106ced8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@


## 0.9.0 - 2021-03-19
- Fix the grep warning: stray \ before " with the latest releases of grep

- Improve switching Go versions performance to nearly instant (#19, thanks @jimeh)
- Add support for darwin-arm64 (M1 chips) (#20, thanks @joelanford)
Expand Down
2 changes: 1 addition & 1 deletion bin/g
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ get_all_remote_versions() {
fi

download_file 2> /dev/null "https://go.googlesource.com/go/+refs" \
| grep -E -o '\"/go/\+/refs/tags/go.+?\"' \
| grep -E -o '"/go/\+/refs/tags/go.+?"' \
| grep -E -o "$pattern" \
| tr -d 'go' \
| sort -k 1,1n -k 2,2n -k 3,3n -t . \
Expand Down

0 comments on commit 106ced8

Please sign in to comment.