Created
August 20, 2013 12:29
-
-
Save atotto/6280742 to your computer and use it in GitHub Desktop.
update script for golang
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
cd `go env GOROOT`/src | |
echo "hg pull";hg pull | |
if [ "$?" -eq 0 ] | |
then | |
echo "OK" | |
#echo "hg update weekly";hg update weekly | |
echo "hg update release";hg update release | |
echo "./all.bash";./all.bash | |
case $OSTYPE in | |
darwin*) | |
echo "./sudo.bash";./sudo.bash | |
;; | |
esac | |
else | |
echo "NG" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment