scripts: remove extraneous semicolons

This commit is contained in:
Etienne Samson
2018-04-20 23:11:28 +02:00
parent 4c969618f6
commit 149790b96e
3 changed files with 6 additions and 8 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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