fix: setup script typo

missing a semicolon
This commit is contained in:
Tony Duan 2022-03-24 21:29:56 +08:00
parent ff85041165
commit 05e5a080c8
No known key found for this signature in database
GPG Key ID: 9B34DD2826E4E2FD

View File

@ -3,7 +3,7 @@
GOTCH_VERSION="${GOTCH_VER:-v0.7.0}"
CUDA_VERSION="${CUDA_VER:-11.3}"
if [ -z $GOPATH ] then
if [ -z $GOPATH ]; then
$GOPATH="$HOME/go"
fi
GOTCH_PATH="$GOPATH/pkg/mod/github.com/sugarme/gotch@$GOTCH_VERSION"