bootstrap: fix syntax error.

This commit is contained in:
Mike McQuaid 2015-07-07 15:48:38 +01:00
parent a87daa6df5
commit f2138f9a6b

@ -3,7 +3,7 @@ set -e
# Only set GOPATH on non-Windows platforms as Windows can't do the symlinking
# that we need.
if [ -z "$GOPATH" ] && [ uname -s | grep -vq "_NT-" ]; then
if [ -z "$GOPATH" ] && uname -s | grep -vq "_NT-"; then
export GOPATH="$(pwd)"
mkdir -p src/github.com/github
[ -h src/github.com/github/git-lfs ] ||