Skip to content

Commit ac6e52a

Browse files
phanschflip1995
authored andcommitted
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.
1 parent bd2c768 commit ac6e52a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ script:
101101
102102
after_success: |
103103
#!/bin/bash
104-
if [ $(uname) == Linux ]; then
104+
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
105105
set -ex
106106
if [ -z ${INTEGRATION} ]; then
107107
./.github/deploy.sh

0 commit comments

Comments
 (0)