mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-07-24 06:05:10 +02:00
Travis fails to catch if statement... try to fix
This commit is contained in:
parent
1a2281cd81
commit
c66650bc06
@ -14,12 +14,13 @@ jobs:
|
|||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- export RUST_BACKTRACE=1
|
- export RUST_BACKTRACE=1
|
||||||
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then
|
- |
|
||||||
export TARGET=x86_64-unknown-linux-gnu;
|
if [[ $TRAVIS_OS_NAME == "linux" ]]; then
|
||||||
|
export TARGET=x86_64-unknown-linux-gnu;
|
||||||
elif [[ $TRAVIS_OS_NAME == "windows" ]]; then
|
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
|
elif [[ $TRAVIS_OS_NAME == "osx" ]] then
|
||||||
export TARGET=x86_64-apple-darwin;
|
export TARGET=x86_64-apple-darwin;
|
||||||
fi
|
fi
|
||||||
before_script: rustup target add $TARGET
|
before_script: rustup target add $TARGET
|
||||||
script:
|
script:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user