mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 10:59:17 +02:00
7 lines
123 B
Bash
Executable file
7 lines
123 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
if [ $1 = "pytest" ]; then
|
|
# let pytest.ini handle it
|
|
unset DJANGO_SETTINGS_MODULE
|
|
fi
|
|
exec "$@"
|