Commit 149790b96eda8a1e48408decf92ba327479c2c33

Etienne Samson 2018-04-20T23:11:28

scripts: remove extraneous semicolons

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