diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2026-07-07 12:08:23 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-07 12:08:23 -0400 |
| commit | ddb7178e8a22ad8ba30f2cf65205814eafbb2bf8 (patch) | |
| tree | 7e9a6ced76ac3086b865c1cb7e7d4c106c0d4dc1 /src/cli/stasis/stasis_main.c | |
| parent | 6171233840094edfe3b60be546b15664fe5fa3ea (diff) | |
| parent | 1ed03ee259024f09a7fca378e6e483d93eb118e5 (diff) | |
| download | stasis-1.9.0.tar.gz | |
Merge pull request #152 from jhunkeler/force-repeatable1.9.0
Implement --force-repeatable option
Diffstat (limited to 'src/cli/stasis/stasis_main.c')
| -rw-r--r-- | src/cli/stasis/stasis_main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cli/stasis/stasis_main.c b/src/cli/stasis/stasis_main.c index c5c1f00..5a9f694 100644 --- a/src/cli/stasis/stasis_main.c +++ b/src/cli/stasis/stasis_main.c @@ -638,6 +638,9 @@ int main(const int argc, char *argv[]) { case OPT_WHEEL_BUILDER_MANYLINUX_IMAGE: globals.wheel_builder_manylinux_image = strdup(optarg); break; + case OPT_FORCE_REPEATABLE: + globals.force_repeatable = true; + break; case '?': default: exit(1); |
