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
@ -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…
x
Reference in New Issue
Block a user