scripts: remove extraneous semicolons
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
diff --git a/script/cibuild.sh b/script/cibuild.sh
index 43ca976..c062c11 100755
--- a/script/cibuild.sh
+++ b/script/cibuild.sh
@@ -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
diff --git a/script/cileaks.sh b/script/cileaks.sh
index ab35e0a..4163613 100755
--- a/script/cileaks.sh
+++ b/script/cileaks.sh
@@ -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
diff --git a/script/citest.sh b/script/citest.sh
index 6be26e2..7e6cdb7 100755
--- a/script/citest.sh
+++ b/script/citest.sh
@@ -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