Skip to content

Commit 8e4f675

Browse files
committed
Fix variable references.
1 parent 7dc6845 commit 8e4f675

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: php-build.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ then
117117
echo "Comparing $cached_image_php_version (cached) to $base_image_php_version (latest)." >> output.log 2>&1
118118

119119
# No need to continue building if our image already exists and PHP is up-to-date.
120-
if cached_image_php_version == base_image_php_version;
120+
if [ $cached_image_php_version == $base_image_php_version ];
121121
then
122122
exit
123123
fi

0 commit comments

Comments
 (0)