mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-27 15:11:30 +00:00
Change conditional
Maybe uname == Linux was true on the windows VM? This could be a way to avoid the secret environment variable issue with Travis CI.
This commit is contained in:
parent
bd2c76824d
commit
ac6e52a91c
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ script:
|
|||
|
||||
after_success: |
|
||||
#!/bin/bash
|
||||
if [ $(uname) == Linux ]; then
|
||||
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
|
||||
set -ex
|
||||
if [ -z ${INTEGRATION} ]; then
|
||||
./.github/deploy.sh
|
||||
|
|
Loading…
Reference in a new issue