diff options
author | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2019-02-20 15:50:40 +0100 |
---|---|---|
committer | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2019-02-20 16:47:17 +0100 |
commit | f8d3457b76d518cc4c29573a2259ab6136f3c000 (patch) | |
tree | a541351cdb9d33bfc7b034efb7f9acac78fdc620 | |
parent | cbae9e740c7aea5b544e3cfc64af31820699f200 (diff) |
mk_exim_release: add --no-sizes option
-rwxr-xr-x | release-process/scripts/mk_exim_release | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/release-process/scripts/mk_exim_release b/release-process/scripts/mk_exim_release index 84d26e777..af41ead01 100755 --- a/release-process/scripts/mk_exim_release +++ b/release-process/scripts/mk_exim_release @@ -545,6 +545,7 @@ MAIN: { group => '0', }, make_cmd => 'make', # for 'make'ing the docs + sizes => 1, compressors => { gzip => 1, bzip2 => 1, @@ -574,7 +575,7 @@ MAIN: { GetOptions( $context, qw(workspace|tmp=s website_base|webgen_base=s tar_cmd|tar-cmd=s make_cmd|make-cmd=s - docs|build-docs! web|build-web! + docs|build-docs! web|build-web! sizes! delete! cleanup! quick|quick-release! minimal), 'sign!' => \$context->{gpg}{sign}, 'key=s' => \$context->{gpg}{key}, @@ -735,6 +736,10 @@ website creation (which can be enabled by B<--web> again). Sign the created archive files (and the sizes.txt). (default: sign) +=item B<--[no]sizes> + +Write the sizes information to F<sizes.txt>. (default: write sizes) + =item B<--tar-cmd> I<cmd> Use to override the path to the C<tar> command. Need GNU tar in case |