fix SKIP_SUPERUSER check
This commit is contained in:
parent
6a52a48b71
commit
f951adcb5e
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ if ! ./manage.py migrate --check >/dev/null 2>&1; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Create Superuser if required
|
# Create Superuser if required
|
||||||
if [ "$SKIP_SUPERUSER" == "true" ]; then
|
if [ "$SKIP_SUPERUSER" = "true" ]; then
|
||||||
echo "↩️ Skip creating the superuser"
|
echo "↩️ Skip creating the superuser"
|
||||||
else
|
else
|
||||||
if [ -z ${SUPERUSER_NAME+x} ]; then
|
if [ -z ${SUPERUSER_NAME+x} ]; then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue