Skip to content
Snippets Groups Projects
Verified Commit 64ecb10c authored by Vincent Sellier's avatar Vincent Sellier
Browse files

web: fix the django admin command launch

Related to swh/infra/sysadm-environment#5391
parent 12529d7d
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,8 @@ case "$1" in
shift
echo "django-admin ${COMMAND} routine"
date
exec sh -c "django-admin ${COMMAND} --perform '$@'"
set -x
exec sh -c "django-admin ${COMMAND} $*"
;;
*)
EXTRA_CLI_FLAGS=""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment