]> Cypherpunks repositories - gostls13.git/commit
cmd/go: fix regexp
authorJoe Tsai <joetsai@digital-static.net>
Mon, 11 Sep 2017 17:39:40 +0000 (10:39 -0700)
committerJoe Tsai <thebrokentoaster@gmail.com>
Mon, 11 Sep 2017 19:59:43 +0000 (19:59 +0000)
commit4768408e5f9ef7ec42aba7e850c4727b0f16ddbe
tree14923b86b6555a1804a2834fab28b9cba9f33fc1
parent2d69e9e259ec0f5d5fbeb3498fbd9fed135fe869
cmd/go: fix regexp

The regular expression "A-za-z" is most likely a typo and
the intent seems to be "A-Za-z" instead.

Using "A-z" matches certain characters like: [\]^_`

Updates #10010

Change-Id: If2d064c56ef613f2e46285d8d4e5998e83aed43a
Reviewed-on: https://go-review.googlesource.com/62910
Reviewed-by: Matt Layher <mdlayher@gmail.com>
Run-TryBot: Matt Layher <mdlayher@gmail.com>
src/cmd/go/internal/get/vcs.go