Skip to content

Commit 149790b

Browse files
committed
scripts: remove extraneous semicolons
1 parent 4c96961 commit 149790b

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

script/cibuild.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
set -x
44

5-
if [ -n "$COVERITY" ];
6-
then
7-
./script/coverity.sh;
8-
exit $?;
5+
if [ -n "$COVERITY" ]; then
6+
./script/coverity.sh
7+
exit $?
98
fi
109

1110
if [ "$TRAVIS_OS_NAME" = "osx" ]; then

script/cileaks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -x
55
# If this platform doesn't support test execution, bail out now
66
if [ -n "$SKIP_TESTS" ];
77
then
8-
exit $?;
8+
exit $?
99
fi
1010

1111
if [ -n "$VALGRIND" -a -e "$(which valgrind)" ]; then

script/citest.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
set -x
44

55
# If this platform doesn't support test execution, bail out now
6-
if [ -n "$SKIP_TESTS" ];
7-
then
8-
exit $?;
6+
if [ -n "$SKIP_TESTS" ]; then
7+
exit $?
98
fi
109

1110
if [ ! -d _build ]; then

0 commit comments

Comments
 (0)