From: Phil Pennock Date: Fri, 5 Jun 2015 04:44:20 +0000 (-0400) Subject: release tooling: unbreak website build when not verbose X-Git-Tag: exim-4_86_RC2~17 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/e14fcb3badf8936e1e0c210f366b861876089093 release tooling: unbreak website build when not verbose --- diff --git a/release-process/scripts/mk_exim_release.pl b/release-process/scripts/mk_exim_release.pl index bd1302f9a..a68d1e66a 100755 --- a/release-process/scripts/mk_exim_release.pl +++ b/release-process/scripts/mk_exim_release.pl @@ -149,9 +149,9 @@ sub build_html_documentation { my @cmd = ( $genpath, '--spec', $spec, '--filter', $filter, '--latest', $context->{trelease}, '--tmpl', - $templates, '--docroot', $dir, '--localstatic', - (($verbose||$debug) ? '--verbose' : '') + $templates, '--docroot', $dir, '--localstatic' ); + push @cmd, '--verbose' if $verbose or $debug; print "Executing ", join( ' ', @cmd ), "\n"; system(@cmd);