aboutsummaryrefslogtreecommitdiff
path: root/src/make.bash
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2012-01-30 10:15:43 -0800
committerRob Pike <r@golang.org>2012-01-30 10:15:43 -0800
commit2d6c0116744df631e3df629055bb54dcc9e8a3e9 (patch)
treeb0ce0a151c963bbb73bc67b38736ec93afc620d9 /src/make.bash
parentd59c88786dc3a27876c782e2639ade5feae520fc (diff)
downloadgo-2d6c0116744df631e3df629055bb54dcc9e8a3e9.tar.xz
make.bash: don't remove hgpatch
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5598046
Diffstat (limited to 'src/make.bash')
-rwxr-xr-xsrc/make.bash4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/make.bash b/src/make.bash
index aeaa181090..b7b20bfd5b 100755
--- a/src/make.bash
+++ b/src/make.bash
@@ -27,13 +27,13 @@ mkdir -p "$GOROOT/pkg"
# Remove old, pre-go-tool binaries.
rm -f "$GOROOT"/bin/[568][acgl]
-rm -f "$GOROOT"/bin/{6cov,6nm,cgo,ebnflint,goapi,gofix,goinstall,gomake,gopack,gopprof,gotest,gotype,govet,goyacc,hgpatch,quietgcc}
+rm -f "$GOROOT"/bin/{6cov,6nm,cgo,ebnflint,goapi,gofix,goinstall,gomake,gopack,gopprof,gotest,gotype,govet,goyacc,quietgcc}
# If GOBIN is set and it has a Go compiler, it must also be cleaned.
if [ -n "GOBIN" ]; then
if [ -x "$GOBIN"/5g -o -x "$GOBIN"/6g -o -x "$GOBIN"/8g ]; then
rm -f "$GOBIN"/[568][acgl]
- rm -f "$GOBIN"/{6cov,6nm,cgo,ebnflint,goapi,gofix,goinstall,gomake,gopack,gopprof,gotest,gotype,govet,goyacc,hgpatch,quietgcc}
+ rm -f "$GOBIN"/{6cov,6nm,cgo,ebnflint,goapi,gofix,goinstall,gomake,gopack,gopprof,gotest,gotype,govet,goyacc,quietgcc}
fi
fi