Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/cli/stasis/args.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ struct option long_options[] = {
{"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-export", no_argument, 0, OPT_NO_EXPORT},
{"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},
Expand All @@ -41,6 +42,7 @@ const char *long_options_help[] = {
"Do not upload artifacts to Artifactory",
"Do not upload build info objects to Artifactory",
"Do not upload artifacts to Artifactory (dry-run)",
"Do not export test or release environments (reuse existing tree)",
"Do not execute test scripts",
"Do not execute tests in parallel",
"Do not rewrite paths and URLs in output files",
Expand Down
1 change: 1 addition & 0 deletions src/cli/stasis/include/args.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#define OPT_FAIL_FAST 1009
#define OPT_NO_PARALLEL 1010
#define OPT_POOL_STATUS_INTERVAL 1011
#define OPT_NO_EXPORT 1012

extern struct option long_options[];
void usage(char *progname);
Expand Down
Loading