From 456693eef1c3c2f97cf27d777e4e00464e01ff82 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 29 Jun 2026 15:17:47 -0400 Subject: Implement --force-repeatable option --- src/cli/stasis/args.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/cli/stasis/args.c') 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", -- cgit