Skip to content

Commit

Permalink
run on any phase except build
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelshobbs committed Jan 29, 2015
1 parent e21e5ab commit c61bcfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-args
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ PERSISTENT_FILE="PERSISTENT_STORAGE"
PERSISTENT_FILE_PATH="$DOKKU_ROOT/$APP/$PERSISTENT_FILE"

output=""
if [[ -f "$PERSISTENT_FILE_PATH" ]] && [[ "$PHASE" == "deploy" ]]; then
if [[ -f "$PERSISTENT_FILE_PATH" ]] && [[ "$PHASE" != "build" ]]; then
DONE=false
until $DONE; do
read line || DONE=true
Expand Down

0 comments on commit c61bcfa

Please sign in to comment.