summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorEtienne Samson <samson.etienne@gmail.com>2018-04-20 23:11:28 +0200
committerEtienne Samson <samson.etienne@gmail.com>2018-06-06 13:15:50 +0200
commit149790b96eda8a1e48408decf92ba327479c2c33 (patch)
tree9638ca5c70f447f459b4b3abe715e0a9c80b5e76 /script
parent4c969618f6ec6caa8facd199c3a6de0e6b06396f (diff)
downloadlibgit2-149790b96eda8a1e48408decf92ba327479c2c33.tar.gz
scripts: remove extraneous semicolons
Diffstat (limited to 'script')
-rwxr-xr-xscript/cibuild.sh7
-rwxr-xr-xscript/cileaks.sh2
-rwxr-xr-xscript/citest.sh5
3 files changed, 6 insertions, 8 deletions
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