1
0
mirror of https://github.com/bspeice/aeron-rs synced 2024-12-21 21:38:09 -05:00

Try just removing sh.exe outright

Hilarious things happen in Travis when /bin goes away
This commit is contained in:
Bradlee Speice 2020-01-12 18:44:32 -05:00
parent 437e3f9d05
commit 80c1aed824

View File

@ -14,9 +14,8 @@ before_script:
- rustup update - rustup update
- rustup component add clippy - rustup component add clippy
- rustup component add rustfmt - rustup component add rustfmt
# CMake doesn't like `sh.exe` being available on Windows, # CMake doesn't like `sh.exe` being on the PATH,
# and since we don't use it elsewhere, just remove from PATH - if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then rm "C:/Program Files/Git/usr/bin/sh.exe"; fi
- export PATH="${PATH/:\/bin/}"
script: script:
- cargo clippy --all - cargo clippy --all