7 lines
66 B
Bash
7 lines
66 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
python manage.py migrate --noinput
|
|
|
|
exec "$@"
|