diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2024-12-07 19:53:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-07 19:53:44 -0500 |
commit | 456c5a481a7dabb53434a696488ac6eecb962d5b (patch) | |
tree | 8f4743a4cfdad61f9aeac0dffce050e5bd9eef1d /src/cli/stasis/args.c | |
parent | bdadebfceffad22179b33948113b2bf82f02c1f7 (diff) | |
parent | 4c403d1f1318a163b017605c2af6d1a14c579f99 (diff) | |
download | stasis-456c5a481a7dabb53434a696488ac6eecb962d5b.tar.gz |
Merge pull request #74 from jhunkeler/with-indexer-tlc
Combined: indexer-tlc and clone-existing-directory
Diffstat (limited to 'src/cli/stasis/args.c')
-rw-r--r-- | src/cli/stasis/args.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cli/stasis/args.c b/src/cli/stasis/args.c index ed11ab9..f3ce823 100644 --- a/src/cli/stasis/args.c +++ b/src/cli/stasis/args.c @@ -17,6 +17,7 @@ struct option long_options[] = { {"no-docker", no_argument, 0, OPT_NO_DOCKER}, {"no-artifactory", no_argument, 0, OPT_NO_ARTIFACTORY}, {"no-artifactory-build-info", no_argument, 0, OPT_NO_ARTIFACTORY_BUILD_INFO}, + {"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-rewrite", no_argument, 0, OPT_NO_REWRITE_SPEC_STAGE_2}, @@ -39,6 +40,7 @@ const char *long_options_help[] = { "Do not build docker images", "Do not upload artifacts to Artifactory", "Do not upload build info objects to Artifactory", + "Do not upload artifacts to Artifactory (dry-run)", "Do not execute test scripts", "Do not execute tests in parallel", "Do not rewrite paths and URLs in output files", |