summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2019-12-30 22:04:24 -0500
committerClement Tsang <34804052+ClementTsang@users.noreply.github.com>2019-12-30 22:04:24 -0500
commit1a2281cd811d7931582a5f32bd18bdf1d45ab3ca (patch)
tree3a4476eb1b164fafe85a864ae5a32988ba329cab
parent1f7e90e659099c20f3b69a998f8cac3635f4f444 (diff)
Forgot semicolons... jeez
-rw-r--r--.travis.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 0d5c3abc..751cd51d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,11 +15,11 @@ jobs:
before_install:
- export RUST_BACKTRACE=1
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then
- export TARGET=x86_64-unknown-linux-gnu
+ export TARGET=x86_64-unknown-linux-gnu;
elif [[ $TRAVIS_OS_NAME == "windows" ]]; then
- export TARGET=x86_64-pc-windows-msvc
+ export TARGET=x86_64-pc-windows-msvc;
elif [[ $TRAVIS_OS_NAME == "osx" ]] then
- export TARGET=x86_64-apple-darwin
+ export TARGET=x86_64-apple-darwin;
fi
before_script: rustup target add $TARGET
script: