Skip to content

Commit

Permalink
fix(dockerrun): bad bash if
Browse files Browse the repository at this point in the history
  • Loading branch information
frickjack committed Aug 15, 2018
1 parent 1315800 commit 06e85ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dockerrun.bash
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ update-ca-certificates
#
# Enable debug flag based on GEN3_DEBUG environment
#
if [ -f ./wsgi.py && "$GEN3_DEBUG" == "True" ]; then
if [[ -f ./wsgi.py && "$GEN3_DEBUG" == "True" ]]; then
echo -e "\napplication.debug=True\n" >> ./wsgi.py
fi

Expand Down

0 comments on commit 06e85ec

Please sign in to comment.