Skip to content

Commit 106ced8

Browse files
authored
Merge pull request #29 from wintermi/next
Fix the grep warning: stray \ before "
2 parents b448a1f + a6a38fa commit 106ced8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55

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

89
- Improve switching Go versions performance to nearly instant (#19, thanks @jimeh)
910
- Add support for darwin-arm64 (M1 chips) (#20, thanks @joelanford)

bin/g

+1-1
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ get_all_remote_versions() {
346346
fi
347347

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

0 commit comments

Comments
 (0)