We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9962cb8 commit 556afd1Copy full SHA for 556afd1
.travis.yml
@@ -3,9 +3,6 @@
3
4
language: c
5
6
-env:
7
- - TRAVIS_OS_UNAME=$(uname -s)
8
-
9
os:
10
- osx
11
- linux
@@ -17,8 +14,8 @@ before_install:
17
14
18
15
# Make sure CMake and Mono are installed
19
16
install:
20
- - if [[ $TRAVIS_OS_UNAME = 'Linux' ]]; then ./CI/travis.linux.install.deps.sh; fi
21
- - if [[ $TRAVIS_OS_UNAME = 'Darwin' ]]; then ./CI/travis.osx.install.deps.sh; fi
+ - if [ "${TRAVIS_OS_NAME}" = "linux" ]; then ./CI/travis.linux.install.deps.sh; fi
+ - if [ "${TRAVIS_OS_NAME}" = "osx" ]; then ./CI/travis.osx.install.deps.sh; fi
22
23
# Build libgit2, LibGit2Sharp and run the tests
24
script:
0 commit comments