Skip to content

Commit

Permalink
Merge pull request #5 from mittwald/bugfix/install-bad-condition
Browse files Browse the repository at this point in the history
Fix incorrect bash condition in pre_install_action
  • Loading branch information
martin-helmich authored Mar 11, 2024
2 parents 05d3339 + f1dfbc1 commit e3447e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pre_install_actions:
#ddev-nodisplay
if !( {{ contains "MITTWALD_APP_INSTALLATION_ID" (list .DdevProjectConfig.web_environment | toString) }} ); then
app_id="${MITTWALD_APP_INSTALLATION_ID:-}"
if [[ -z "${app_id}" && -e "${DDEV_NONINTERACTIVE:-}" ]] ; then
if [[ -z "${app_id}" && -z "${DDEV_NONINTERACTIVE:-}" ]] ; then
read app_id
fi
Expand Down

0 comments on commit e3447e0

Please sign in to comment.