mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
9 lines
115 B
Text
9 lines
115 B
Text
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
GOROOT=/usr/local/go
|
||
|
|
|
||
|
|
echo "Removing previous installation"
|
||
|
|
if [ -d $GOROOT ]; then
|
||
|
|
rm -r $GOROOT
|
||
|
|
fi
|