Skip to content
Snippets Groups Projects
Commit 20b8d035 authored by Phillip Smyth's avatar Phillip Smyth Committed by Jürg Billeter
Browse files

_frontend/cli.py: Check for invalid --track-except or --track-save

Report error when --track-except or --track-save is specified without
--track or --track-all.

Fixes #181
parent b5f43ece
No related branches found
No related tags found
Loading
Pipeline #
......@@ -187,6 +187,14 @@ def cli(context, **kwargs):
def build(app, elements, all, track, track_save, track_all, track_except):
"""Build elements in a pipeline"""
if track_except and not (track or track_all):
click.echo("ERROR: --track-except cannot be used without --track or --track-all")
sys.exit(-1)
if track_save and not (track or track_all):
click.echo("ERROR: --track-save cannot be used without --track or --track-all")
sys.exit(-1)
if track_all:
track = elements
......
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