We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8abfe38 commit 214c8dfCopy full SHA for 214c8df
1 file changed
.travis.yml
@@ -9,8 +9,8 @@ env:
9
- USE_LIBGLIB=yes
10
before_script:
11
- ./autogen.sh
12
- - sh -c '[ "$USE_LIBGLIB" = "yes" ] && ./configure --with-libglib CFLAGS="-Werror"'
13
- - sh -c '[ "$USE_LIBGLIB" = "no" ] && ./configure --without-libglib CFLAGS="-Werror"'
+ - sh -c 'if [ "$USE_LIBGLIB" = "yes" ]; then ./configure --with-libglib CFLAGS="-Werror"; fi'
+ - sh -c 'if [ "$USE_LIBGLIB" = "no" ]; then ./configure --without-libglib CFLAGS="-Werror"; fi'
14
script: make check
15
compiler:
16
- clang
0 commit comments