aboutsummaryrefslogtreecommitdiff
path: root/src/cli/stasis/args.c
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2026-07-07 12:08:23 -0400
committerGitHub <noreply@github.com>2026-07-07 12:08:23 -0400
commitddb7178e8a22ad8ba30f2cf65205814eafbb2bf8 (patch)
tree7e9a6ced76ac3086b865c1cb7e7d4c106c0d4dc1 /src/cli/stasis/args.c
parent6171233840094edfe3b60be546b15664fe5fa3ea (diff)
parent1ed03ee259024f09a7fca378e6e483d93eb118e5 (diff)
downloadstasis-ddb7178e8a22ad8ba30f2cf65205814eafbb2bf8.tar.gz
Merge pull request #152 from jhunkeler/force-repeatable1.9.0
Implement --force-repeatable option
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 c1bf031..d4dec0c 100644
--- a/src/cli/stasis/args.c
+++ b/src/cli/stasis/args.c
@@ -17,6 +17,7 @@ struct option long_options[] = {
{"overwrite", no_argument, 0, OPT_OVERWRITE},
{"wheel-builder", required_argument, 0, OPT_WHEEL_BUILDER},
{"wheel-builder-manylinux-image", required_argument, 0, OPT_WHEEL_BUILDER_MANYLINUX_IMAGE},
+ {"force-repeatable", no_argument, 0, OPT_FORCE_REPEATABLE},
{"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},
@@ -44,6 +45,7 @@ const char *long_options_help[] = {
"Overwrite an existing release",
"Wheel building backend (build, cibuildwheel, manylinux)",
"Manylinux image name",
+ "Adapt package source(s) and settings to reduce changes",
"Do not build docker images",
"Do not upload artifacts to Artifactory",
"Do not upload build info objects to Artifactory",