aboutsummaryrefslogtreecommitdiff
path: root/src/cli/stasis/args.c
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2025-11-11 15:52:55 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2025-11-14 10:30:57 -0500
commit212e56f1256b8ff3e9dacb0b867e48fcb9d2a315 (patch)
treeb32d3c2ed7f9e8119e6596900324c851e1020054 /src/cli/stasis/args.c
parentb674adfebf5d7b756f9d996a5229e7aa733a7797 (diff)
downloadstasis-212e56f1256b8ff3e9dacb0b867e48fcb9d2a315.tar.gz
Add --no-task-logging CLI argument
Diffstat (limited to 'src/cli/stasis/args.c')
-rw-r--r--src/cli/stasis/args.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cli/stasis/args.c b/src/cli/stasis/args.c
index f3ce823..fbda494 100644
--- a/src/cli/stasis/args.c
+++ b/src/cli/stasis/args.c
@@ -20,6 +20,7 @@ struct option long_options[] = {
{"no-artifactory-upload", no_argument, 0, OPT_NO_ARTIFACTORY_UPLOAD},
{"no-testing", no_argument, 0, OPT_NO_TESTING},
{"no-parallel", no_argument, 0, OPT_NO_PARALLEL},
+ {"no-task-logging", no_argument, 0, OPT_NO_TASK_LOGGING},
{"no-rewrite", no_argument, 0, OPT_NO_REWRITE_SPEC_STAGE_2},
{0, 0, 0, 0},
};
@@ -43,6 +44,7 @@ const char *long_options_help[] = {
"Do not upload artifacts to Artifactory (dry-run)",
"Do not execute test scripts",
"Do not execute tests in parallel",
+ "Do not log task output (write to stdout)",
"Do not rewrite paths and URLs in output files",
NULL,
};