diff options
-rwxr-xr-x | bin/reproducible_build.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index d81414f0..7c6bd80b 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -96,9 +96,11 @@ cleanup_all() { irc_message "$REPRODUCIBLE_URL/$SUITE/$ARCH/$SRCPACKAGE done: $STATUS" fi gzip -9fvn $RBUILDLOG - # XXX quite ugly: this is just needed to get the correct value of the - # compressed files in the html. It's cheap and quite safe so, *shrugs*... - gen_package_html $SRCPACKAGE + if [ "$MODE" = "legacy" ] || [ "$MODE" = "ng" ] ; then + # XXX quite ugly: this is just needed to get the correct value of the + # compressed files in the html. It's cheap and quite safe so, *shrugs*... + gen_package_html $SRCPACKAGE + fi cd rm -r $TMPDIR if ! $BAD_LOCKFILE ; then rm -f $LOCKFILE ; fi |