Fixed flaw in bash scripting...

This commit is contained in:
Clement Tsang 2019-12-30 22:17:03 -05:00
parent c66650bc06
commit feeca2b258

View File

@ -19,7 +19,7 @@ before_install:
export TARGET=x86_64-unknown-linux-gnu;
elif [[ $TRAVIS_OS_NAME == "windows" ]]; then
export TARGET=x86_64-pc-windows-msvc;
elif [[ $TRAVIS_OS_NAME == "osx" ]] then
elif [[ $TRAVIS_OS_NAME == "osx" ]]; then
export TARGET=x86_64-apple-darwin;
fi
before_script: rustup target add $TARGET