diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-10-09 12:45:28 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-10-09 12:45:28 +0200 |
commit | c0e5dd8e0aa77033ef86e822b8f044b277f67c05 (patch) | |
tree | 003026f2a483a529573c1e8c30f35230dfe46fab /bin | |
parent | 59c469d7dd3ea608e5582ef3faa0d306b33afafa (diff) | |
download | jenkins.debian.net-c0e5dd8e0aa77033ef86e822b8f044b277f67c05.tar.xz |
reproducible: list existing files if apt-get cannot download
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 507072c4..0e5c1703 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -140,6 +140,7 @@ for SRCPACKAGE in ${PACKAGES} ; do apt-get source --download-only --only-source ${SRCPACKAGE} > ${RBUILDLOG} 2>&1 RESULT=$? if [ $RESULT != 0 ] ; then + ls -l ${SRCPACKAGE}* >> ${RBUILDLOG} SOURCELESS="${SOURCELESS} ${SRCPACKAGE}" sqlite3 -init $INIT ${PACKAGES_DB} "REPLACE INTO source_packages VALUES (\"${SRCPACKAGE}\", \"None\", \"404\", \"$DATE\")" set +x |