Skip to content
Snippets Groups Projects
Commit 8091b7d4 authored by Calen Pennington's avatar Calen Pennington
Browse files

Allow debugging collect static during paver update_assets

parent f10a7550
No related branches found
No related tags found
No related merge requests found
......@@ -924,7 +924,11 @@ def update_assets(args):
)
parser.add_argument(
'--debug', action='store_true', default=False,
help="Disable Sass compression",
help="Enable all debugging",
)
parser.add_argument(
'--debug-collect', action='store_true', default=False,
help="Disable collect static",
)
parser.add_argument(
'--skip-collect', dest='collect', action='store_false', default=True,
......@@ -963,7 +967,7 @@ def update_assets(args):
execute_compile_sass(args)
if args.collect:
if args.debug:
if args.debug or args.debug_collect:
collect_log_args.update({COLLECTSTATIC_LOG_DIR_ARG: None})
if args.collect_log_dir:
......
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