Skip to content
Snippets Groups Projects
Commit 9dbd53f19c85 authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

:ambulance: correctly handle without demo flag

parent d52d91e7825e
No related branches found
No related tags found
No related merge requests found
...@@ -386,7 +386,8 @@ ...@@ -386,7 +386,8 @@
arg.append('-i') arg.append('-i')
arg.append(','.join(modules_to_install)) arg.append(','.join(modules_to_install))
if nmspc.without_demo: if nmspc.without_demo:
arg.append('--without-demo %s' % database) arg.append('--without-demo')
arg.append(nmspc.without_demo)
if nmspc.max_cron_threads: if nmspc.max_cron_threads:
arg.append('--max-cron-threads=%s' % nmspc.max_cron_threads) arg.append('--max-cron-threads=%s' % nmspc.max_cron_threads)
if nmspc.log_level: if nmspc.log_level:
......
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