Skip to content

Instantly share code, notes, and snippets.

@atotto
Created August 20, 2013 12:29
Show Gist options
  • Save atotto/6280742 to your computer and use it in GitHub Desktop.
Save atotto/6280742 to your computer and use it in GitHub Desktop.
update script for golang
#!/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