Skip to content

Commit

Permalink
Fixes unbound variable on MacOS (apache#9335)
Browse files Browse the repository at this point in the history
  • Loading branch information
potiuk authored Jun 16, 2020
1 parent 7c12a9d commit 2fc13f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion breeze
Original file line number Diff line number Diff line change
Expand Up @@ -2009,7 +2009,7 @@ function run_build_command {
# Runs the actual command - depending on the command chosen it will use the right
# Convenient script and run the right command with it
function run_breeze_command {
set -u
set +u
case "${COMMAND_TO_RUN}" in
enter_breeze)
if [[ ${PRODUCTION_IMAGE} == "true" ]]; then
Expand Down Expand Up @@ -2090,6 +2090,7 @@ function run_breeze_command {
echo >&2
;;
esac
set -u
}

setup_default_breeze_variables
Expand Down

0 comments on commit 2fc13f0

Please sign in to comment.