1
0
mirror of https://github.com/bspeice/aeron-rs synced 2025-07-13 11:44:53 -04:00

Attempt to remove sh.exe from PATH

This commit is contained in:
2020-01-12 18:37:15 -05:00
parent 56fc28dc47
commit 437e3f9d05
2 changed files with 6 additions and 2 deletions

View File

@ -14,8 +14,9 @@ before_script:
- rustup update
- rustup component add clippy
- rustup component add rustfmt
- 'echo $PATH'
- 'which sh.exe'
# CMake doesn't like `sh.exe` being available on Windows,
# and since we don't use it elsewhere, just remove from PATH
- export PATH="${PATH/:\/bin/}"
script:
- cargo clippy --all