diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-22 12:40:45 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-22 12:40:45 +0100 |
commit | 3d9333dc17e3ff00acdd3303e43ba5b43c7f0626 (patch) | |
tree | b653f03d3fba5d05ae6a567935b2b0db643f5b3a /bin | |
parent | 375e2c3374ef1a6215794dc8d85b1169d93eb929 (diff) | |
download | jenkins.debian.net-3d9333dc17e3ff00acdd3303e43ba5b43c7f0626.tar.xz |
reproducible: strip-nondeterminism is developed in master branch
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_repository_comparison.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bin/reproducible_html_repository_comparison.sh b/bin/reproducible_html_repository_comparison.sh index 5e9ca7f3..3bb7489c 100755 --- a/bin/reproducible_html_repository_comparison.sh +++ b/bin/reproducible_html_repository_comparison.sh @@ -109,7 +109,12 @@ for PKG in $SOURCES ; do # write_page "<tr><td><pre>src:$PKG</pre></td>" write_page " <td>" - URL="http://anonscm.debian.org/cgit/reproducible/$PKG.git/?h=pu/reproducible_builds" + case $PKG in + strip-nondeterminism) + URL="http://anonscm.debian.org/cgit/reproducible/$PKG.git" ;; + *) + URL="http://anonscm.debian.org/cgit/reproducible/$PKG.git/?h=pu/reproducible_builds" ;; + esac curl $URL > $TMP2FILE if [ "$(grep "'error'>No repositories found" $TMP2FILE 2>/dev/null)" ] ; then write_page "$URL<br /><span class=\"red\">(no git repository found)</span>" |