From 149790b96eda8a1e48408decf92ba327479c2c33 Mon Sep 17 00:00:00 2001 From: Etienne Samson Date: Fri, 20 Apr 2018 23:11:28 +0200 Subject: scripts: remove extraneous semicolons --- script/cibuild.sh | 7 +++---- script/cileaks.sh | 2 +- script/citest.sh | 5 ++--- 3 files changed, 6 insertions(+), 8 deletions(-) (limited to 'script') diff --git a/script/cibuild.sh b/script/cibuild.sh index 43ca976cc..c062c112e 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 ab35e0a03..4163613af 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 6be26e298..7e6cdb7d7 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 -- cgit v1.2.1