mirror of
https://github.com/golang/go
synced 2024-11-19 08:34:39 -07:00
dba08e0615
The ambiguity has gone on too long. R=golang-dev, minux.ma, r, dsymonds CC=golang-dev https://golang.org/cl/39920043
9 lines
115 B
Bash
Executable File
9 lines
115 B
Bash
Executable File
#!/bin/bash
|
|
|
|
GOROOT=/usr/local/go
|
|
|
|
echo "Removing previous installation"
|
|
if [ -d $GOROOT ]; then
|
|
rm -r $GOROOT
|
|
fi
|