Fixed a bash syntax error.

This commit is contained in:
Omer Katz 2014-05-21 11:44:24 +03:00
parent e0ed62e308
commit 1c8c63e0a5

View file

@ -22,7 +22,7 @@ script:
- ./autogen.sh
- ./configure $CONFIGURE_OPTION
- make
- if [x$VALGRIND == xyes ]; make check 2>&1 > /dev/null; else; make check; fi
- if [x$VALGRIND == xyes ]; make check 2>&1 > /dev/null; else make check; fi
- if [x$VALGRIND == xyes ]; then valgrind ./tests/.libs/* -v --trace-children=yes --show-leak-kinds=full --leak-check=full; fi
after_success: