Commit 149790b9 by Etienne Samson

scripts: remove extraneous semicolons

parent 4c969618
......@@ -2,10 +2,9 @@
set -x
if [ -n "$COVERITY" ];
then
./script/coverity.sh;
exit $?;
if [ -n "$COVERITY" ]; then
./script/coverity.sh
exit $?
fi
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
......
......@@ -5,7 +5,7 @@ set -x
# If this platform doesn't support test execution, bail out now
if [ -n "$SKIP_TESTS" ];
then
exit $?;
exit $?
fi
if [ -n "$VALGRIND" -a -e "$(which valgrind)" ]; then
......
......@@ -3,9 +3,8 @@
set -x
# If this platform doesn't support test execution, bail out now
if [ -n "$SKIP_TESTS" ];
then
exit $?;
if [ -n "$SKIP_TESTS" ]; then
exit $?
fi
if [ ! -d _build ]; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment