diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-04-25 06:34:10 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-04-25 13:09:19 +0200 |
commit | 323e2dd18ee65806c7da9fc6ef86d30de29dca06 (patch) | |
tree | 5855a0999e6d2e836249d1b72645c65de0810e2c | |
parent | e885c9856ee062d86223bf5e5096f68a6871a996 (diff) | |
download | jenkins.debian.net-323e2dd18ee65806c7da9fc6ef86d30de29dca06.tar.xz |
reproducible: maintenance: do not remove notes of removed packages, the notes job takes care of that cleanup
-rwxr-xr-x | bin/reproducible_maintenance.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_maintenance.sh b/bin/reproducible_maintenance.sh index a2796cfd..b26ecf48 100755 --- a/bin/reproducible_maintenance.sh +++ b/bin/reproducible_maintenance.sh @@ -202,7 +202,7 @@ if grep -q '|' $PACKAGES ; then WHERE name='$PKGNAME' AND suite='$SUITE' AND architecture='$ARCH'" sqlite3 -init $INIT ${PACKAGES_DB} "$QUERY" cd /var/lib/jenkins/userContent - find rb-pkg/$SUITE/$ARCH rbuild/$SUITE/$ARCH notes/ dbd/$SUITE/$ARCH buildinfo/$SUITE/$ARCH -name "${PKGNAME}_*" | xargs rm -v + find rb-pkg/$SUITE/$ARCH rbuild/$SUITE/$ARCH dbd/$SUITE/$ARCH buildinfo/$SUITE/$ARCH -name "${PKGNAME}_*" | xargs rm -v done cd - > /dev/null fi |