update the release script to pull and clean the repo before building
parent
b5321d4a42
commit
b2c66d384d
|
@ -4,6 +4,12 @@ set -e
|
|||
|
||||
cd `dirname $0`
|
||||
|
||||
git checkout .
|
||||
git pull --rebase
|
||||
make clean
|
||||
git clean -dfx
|
||||
./configure --with-goroot=$HOME/bin/go/
|
||||
|
||||
modified=$(git ls-files --modified | wc -l)
|
||||
|
||||
if [ $modified -ne 0 ]; then
|
||||
|
|
Loading…
Reference in New Issue