diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-12-03 10:47:37 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-12-03 19:07:23 -0500 |
commit | 5796ce9338c7fe2aa8a26766ff9e01448d785c99 (patch) | |
tree | 2bdbf64f25753f8d53b408b62b78f524cbe3ca0d /src/cli/stasis/args.h | |
parent | 9098abc13882e6b665e46361721d3bcba7da55eb (diff) | |
download | stasis-5796ce9338c7fe2aa8a26766ff9e01448d785c99.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.h | 13 |
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); |