diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-07-16 21:24:36 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-07-16 21:24:36 +0200 |
commit | 8de7465d77bcb46eb8c53aaa4cb1f951937788ba (patch) | |
tree | c24569ecf35aa51113478fd532462a32ab6f87bb /.travis.yml | |
parent | 1a9f947cde3dbc802e186808242bbe097a4701c6 (diff) | |
download | vim-git-8de7465d77bcb46eb8c53aaa4cb1f951937788ba.tar.gz |
Add missing "then".
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index d34898b1a..d089622e9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,8 +37,8 @@ script: - NPROC=$(getconf _NPROCESSORS_ONLN) - if [ "$CHECK_AUTOCONF" = "yes" -a "$CC" = "gcc" ]; then make -C src autoconf; fi - if [ "x$SHADOWOPT" != x ]; then make -C src shadow; fi - - if [ "x$BUILD" = "yes" ]; (cd ${SRCDIR} && ./configure --with-features=$FEATURES $CONFOPT --enable-fail-if-missing && make -j$NPROC); fi - - if [ "x$BUILD" = "yes" ]; ${SRCDIR}/vim --version; fi + - if [ "x$BUILD" = "yes" ]; then (cd ${SRCDIR} && ./configure --with-features=$FEATURES $CONFOPT --enable-fail-if-missing && make -j$NPROC); fi + - if [ "x$BUILD" = "yes" ]; then ${SRCDIR}/vim --version; fi - make $SHADOWOPT $TEST after_success: |