It's '=' in sh, not '=='

This commit is contained in:
David Baker 2016-11-11 18:07:03 +00:00
parent 2bcb27b24f
commit 6e47d2f1b5

View file

@ -3,7 +3,7 @@
set -e
dev=""
if [ "$1" == '-d' ]; then
if [ "$1" = '-d' ]; then
dev=":dev"
fi