mirror of
https://github.com/golang/go
synced 2024-11-19 10:44:47 -07:00
9 lines
115 B
Plaintext
9 lines
115 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
GOROOT=/usr/local/go
|
||
|
|
||
|
echo "Removing previous installation"
|
||
|
if [ -d $GOROOT ]; then
|
||
|
rm -r $GOROOT
|
||
|
fi
|