diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-05-28 11:50:54 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-05-28 11:50:54 +0200 |
commit | 4ff295dea4bd9b57574338d0fe27d9e287e07d41 (patch) | |
tree | 6c47a410f5ea9372879f2b2e95b5d61daf8b23ae | |
parent | 51f5c31a523536604777dd988e25dce5a9b1dfc1 (diff) | |
download | jenkins.debian.net-4ff295dea4bd9b57574338d0fe27d9e287e07d41.tar.xz |
reproducible: fixup count logic
-rwxr-xr-x | bin/reproducible_html_repository_comparison.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_repository_comparison.sh b/bin/reproducible_html_repository_comparison.sh index c1e17bff..3f6c4a2d 100755 --- a/bin/reproducible_html_repository_comparison.sh +++ b/bin/reproducible_html_repository_comparison.sh @@ -148,7 +148,7 @@ for PKG in $SOURCES ; do write_page "<a href=\"$URL\">$PKG.git</a>" if ! $OBSOLETE_IN_TESTING && ! $OBSOLETE_IN_SID && ! $OBSOLETE_IN_EXP && [ "$PKG" != "strip-nondeterminism" ] ; then write_page "<br />(unused?)" - elif $OBSOLETE_IN_SID ; then + elif ! $OBSOLETE_IN_SID ; then let "MODIFIED_IN_SID+=1" fi fi |