aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Janovsky2022-01-29 11:42:21 +0100
committerAdam Janovsky2022-01-29 11:42:21 +0100
commitbb48bce9e8d0e5aa1dd9957ea90a84b51cc83701 (patch)
tree95bf29a404ca674273c745705208e68301962e5b
parentc303d9c0eed0e0e06804e2628203824fb9010fa2 (diff)
downloadsec-certs-bb48bce9e8d0e5aa1dd9957ea90a84b51cc83701.tar.gz
sec-certs-bb48bce9e8d0e5aa1dd9957ea90a84b51cc83701.tar.zst
sec-certs-bb48bce9e8d0e5aa1dd9957ea90a84b51cc83701.zip
invoke MU processing on 'all' action in CC CLI
-rwxr-xr-xcc_cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc_cli.py b/cc_cli.py
index 6201b87e..11e1a40e 100755
--- a/cc_cli.py
+++ b/cc_cli.py
@@ -80,7 +80,7 @@ def main(
except ValueError as e:
print(f"Error: Bad format of configuration file: {e}")
- actions_set = {"build", "download", "convert", "analyze"} if "all" in actions else set(actions)
+ actions_set = {"build", "download", "convert", "analyze", "maintenances"} if "all" in actions else set(actions)
if inputpath and "build" not in actions_set:
dset: CCDataset = CCDataset.from_json(Path(inputpath))