Fix reference to $APP

This commit is contained in:
Jose Diaz-Gonzalez
2014-12-08 22:16:05 -05:00
parent 6ddc7275dd
commit d9d66c58ab

View File

@@ -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