summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_repository_comparison.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-03-22 12:40:45 +0100
committerHolger Levsen <holger@layer-acht.org>2015-03-22 12:40:45 +0100
commit3d9333dc17e3ff00acdd3303e43ba5b43c7f0626 (patch)
treeb653f03d3fba5d05ae6a567935b2b0db643f5b3a /bin/reproducible_html_repository_comparison.sh
parent375e2c3374ef1a6215794dc8d85b1169d93eb929 (diff)
downloadjenkins.debian.net-3d9333dc17e3ff00acdd3303e43ba5b43c7f0626.tar.xz
reproducible: strip-nondeterminism is developed in master branch
Diffstat (limited to 'bin/reproducible_html_repository_comparison.sh')
-rwxr-xr-xbin/reproducible_html_repository_comparison.sh7
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>"