Skip to content

Commit 44d950c

Browse files
committed
Fix logical error
1 parent 03082d5 commit 44d950c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,10 @@ for port in $ports; do
7070
fi
7171
done
7272

73+
# Display status of PHP extensions.
7374
# extensions.php curls to localhost, which doesn't work in a CircleCI env
7475
# where we cannot access the created container directly.
75-
if [ ! -z "$CIRCLECI" ]; then
76+
if [ -z "$CIRCLECI" ]; then
7677
echo -e 'Checking extensions...\n\n'
7778
php extensions.php
7879
fi

0 commit comments

Comments
 (0)