Skip to content

Commit

Permalink
[Scoped] Fix PHP71_BIN_PATH: unbound variable on local full_build.sh (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Dec 28, 2021
1 parent 0344f30 commit fa72490
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion full_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ cp ../preload.php .
#
# export PHP71_BIN_PATH=/opt/homebrew/Cellar/php@7.1/7.1.33_4/bin/php && sh ./full_build.sh
#
if [ -z "$PHP71_BIN_PATH" ]; then
if test -z ${PHP71_BIN_PATH+y}; then
eval "bin/rector list --ansi";
else
eval "$PHP71_BIN_PATH bin/rector list --ansi";
Expand Down

0 comments on commit fa72490

Please sign in to comment.