summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2019-12-30 22:17:03 -0500
committerClement Tsang <34804052+ClementTsang@users.noreply.github.com>2019-12-30 22:17:03 -0500
commitfeeca2b2584bcca4822334d18d47894f9deffe84 (patch)
treecbaea942409356fcabc8f48fb218e0ee09788d8c
parentc66650bc06318256bf130081b1e4b039b736477a (diff)
Fixed flaw in bash scripting...
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 37d5dab9..aadc5853 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -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