mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
Fix reference to $APP
This commit is contained in:
@@ -9,8 +9,8 @@ fi
|
||||
if [[ -f "$DOKKU_ROOT/BUILD_ENV" ]]; then
|
||||
BUILD_ENV+=$(< "$DOKKU_ROOT/BUILD_ENV")
|
||||
fi
|
||||
if [[ -f "$DOKKU_ROOT/APP/ENV" ]]; then
|
||||
BUILD_ENV+=$(< "$DOKKU_ROOT/APP/ENV")
|
||||
if [[ -f "$DOKKU_ROOT/$APP/ENV" ]]; then
|
||||
BUILD_ENV+=$(< "$DOKKU_ROOT/$APP/ENV")
|
||||
fi
|
||||
|
||||
if [[ ! -z "$BUILD_ENV" ]]; then
|
||||
|
||||
Reference in New Issue
Block a user