1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

add missing ;

This commit is contained in:
Stefan Lankes 2017-01-18 18:01:19 +01:00
parent 6299bf6073
commit 6b105496a8

View file

@ -10,8 +10,7 @@ BRANCH="production"
echo $TRAVIS_BRANCH
echo $BRANCH
if [ "$TRAVIS_BRANCH" == "$BRANCH" ]
then
if [ "$TRAVIS_BRANCH" == "$BRANCH" ]; then
echo "No tests on production branch"
else
for f in $FILES; do echo "check $f..."; $PROXY $f || exit 1; done