mirror of
https://github.com/golang/go
synced 2024-11-19 07:44:49 -07:00
1d1142f178
Fixes #5258. R=golang-dev, iant, minux.ma CC=golang-dev https://golang.org/cl/8682043
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
|