summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-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: