summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_repository_comparison.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-07-29 13:55:57 +0200
committerHolger Levsen <holger@layer-acht.org>2015-07-29 13:55:57 +0200
commite7a4ddfcf5815a396101fd6a96809929b700e24a (patch)
treef45f4a18c08e88c6b1bbedb15c779f9be780dcee /bin/reproducible_html_repository_comparison.sh
parentf2ba7c1f5e3889700279e52d9b348033305dffed (diff)
downloadjenkins.debian.net-e7a4ddfcf5815a396101fd6a96809929b700e24a.tar.xz
reproducible: refactor
Diffstat (limited to 'bin/reproducible_html_repository_comparison.sh')
-rwxr-xr-xbin/reproducible_html_repository_comparison.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_repository_comparison.sh b/bin/reproducible_html_repository_comparison.sh
index 7b23e42c..39895b1b 100755
--- a/bin/reproducible_html_repository_comparison.sh
+++ b/bin/reproducible_html_repository_comparison.sh
@@ -30,8 +30,8 @@ write_page "</pre></p>"
write_page "<p><table><tr><th>package</th><th>git repo</th><th>PTS link</th><th>usertagged bug</th><th>old versions in our repo<br />(needed for reproducing old builds)</th><th>version in our repo</th><th>version in 'testing'</th><th>version in 'unstable'</th><th>version in 'experimental'</th></tr>"
curl http://reproducible.alioth.debian.org/debian/Sources > $TMPFILE
-SOURCES=$(grep-dctrl -n -s Package -r -FPackage . $TMPFILE | sort -u)
-for PKG in $SOURCES ; do
+SOURCEPKGS=$(grep-dctrl -n -s Package -r -FPackage . $TMPFILE | sort -u)
+for PKG in $SOURCEPKGS ; do
echo "Processing $PKG..."
if [ "${PKG:0:3}" = "lib" ] ; then
PREFIX=${PKG:0:4}