mirror of
https://github.com/libgit2/libgit2.git
synced 2026-01-25 11:06:32 +00:00
scripts: remove extraneous semicolons
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user