summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_blacklist.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-08-07 17:07:59 +0200
committerHolger Levsen <holger@layer-acht.org>2015-08-07 17:07:59 +0200
commit6580bf44b38ab35476b43fca16eb018b3df2c276 (patch)
tree74cc068573cc14a9d04d0a19b69fe71f83ce0a90 /bin/reproducible_blacklist.sh
parent74a9949bb6b7944106b2a97257a726bb34c90369 (diff)
downloadjenkins.debian.net-6580bf44b38ab35476b43fca16eb018b3df2c276.tar.xz
reproducible: rename cleanup_userContent() to cleanup_pkg_files()
Diffstat (limited to 'bin/reproducible_blacklist.sh')
-rwxr-xr-xbin/reproducible_blacklist.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_blacklist.sh b/bin/reproducible_blacklist.sh
index 09bc7895..f541deee 100755
--- a/bin/reproducible_blacklist.sh
+++ b/bin/reproducible_blacklist.sh
@@ -18,7 +18,7 @@ blacklist_packages() {
for PKG in $PACKAGES ; do
VERSION=$(sqlite3 -init $INIT ${PACKAGES_DB} "SELECT version FROM sources WHERE name='$PKG' AND suite='$SUITE';")
PKGID=$(sqlite3 -init $INIT ${PACKAGES_DB} "SELECT id FROM sources WHERE name='$PKG' AND suite='$SUITE';")
- cleanup_userContent
+ cleanup_pkg_files
sqlite3 -init $INIT ${PACKAGES_DB} "REPLACE INTO results (package_id, version, status, build_date) VALUES ('$PKGID', '$VERSION', 'blacklisted', '$DATE');"
done
}