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 authored and Avantol13 committed Sep 12, 2018
1 parent d5c515f commit 8bd843f
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 @@ -8,7 +8,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 8bd843f

Please sign in to comment.