Commit d6c38861 authored by Russ Cox's avatar Russ Cox

test for invalid $GOBIN setting before trying to build

R=r
CC=golang-dev
https://golang.org/cl/153049
parent e23f75b3
......@@ -13,6 +13,13 @@ then
exit 1
fi
if ! test -d $GOBIN
then
echo '$GOBIN is not a directory or does not exist' 1>&2
echo 'create it or set $GOBIN differently' 1>&2
exit 1
fi
bash clean.bash
rm -f $GOBIN/quietgcc
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment