aboutsummaryrefslogtreecommitdiff
path: root/src/cli/stasis/args.h
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2024-12-03 10:47:37 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2024-12-03 10:47:37 -0500
commit1aeebc2621260674d6da34fc87dff51ceae6cc35 (patch)
treefd07452eddb28b0c956d6fe3c43c6c4bc2593184 /src/cli/stasis/args.h
parent0d73bdcd1938a2bf2b35e92c0ab99495451a8b73 (diff)
downloadstasis-1aeebc2621260674d6da34fc87dff51ceae6cc35.tar.gz
Add ability to use artifactory without uploading any artifacts at the end.
* New option: --no-artifactory-upload * Implies --no-artifactory-build-info * Updated README.md
Diffstat (limited to 'src/cli/stasis/args.h')
-rw-r--r--src/cli/stasis/args.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/cli/stasis/args.h b/src/cli/stasis/args.h
index 932eac7..5bad752 100644
--- a/src/cli/stasis/args.h
+++ b/src/cli/stasis/args.h
@@ -10,12 +10,13 @@
#define OPT_NO_DOCKER 1001
#define OPT_NO_ARTIFACTORY 1002
#define OPT_NO_ARTIFACTORY_BUILD_INFO 1003
-#define OPT_NO_TESTING 1004
-#define OPT_OVERWRITE 1005
-#define OPT_NO_REWRITE_SPEC_STAGE_2 1006
-#define OPT_FAIL_FAST 1007
-#define OPT_NO_PARALLEL 1008
-#define OPT_POOL_STATUS_INTERVAL 1009
+#define OPT_NO_ARTIFACTORY_UPLOAD 1004
+#define OPT_NO_TESTING 1005
+#define OPT_OVERWRITE 1006
+#define OPT_NO_REWRITE_SPEC_STAGE_2 1007
+#define OPT_FAIL_FAST 1009
+#define OPT_NO_PARALLEL 1010
+#define OPT_POOL_STATUS_INTERVAL 1011
extern struct option long_options[];
void usage(char *progname);