summaryrefslogtreecommitdiff
path: root/bin/common-functions
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2017-11-28 08:23:22 +0100
committerErich Eckner <git@eckner.net>2017-11-28 08:23:22 +0100
commit5157896082d572e8711c50c827f687f56ea83a71 (patch)
treea9a6bb2ff3b4a36098ae3e96a3bf559c91558fc8 /bin/common-functions
parent9d53151ff94f3c0dbef5d9d6a2c77cbe7bc7f63a (diff)
downloadbuilder-5157896082d572e8711c50c827f687f56ea83a71.tar.xz
bin/common-functions: bugfix
Diffstat (limited to 'bin/common-functions')
-rwxr-xr-xbin/common-functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/common-functions b/bin/common-functions
index f931990..0cd03e1 100755
--- a/bin/common-functions
+++ b/bin/common-functions
@@ -1155,7 +1155,7 @@ print_list_of_archaic_packages() {
"${base_dir}/bin/modify-package-state" -n --tested /dev/stdin
# packages remaining longer than $max_package_age_broken_testing days in testing (w/o being tested!) will be considered outdated
# and no longer block other packages from being moved
- find "${work_dir}/package-states" -mindepth 1 -maxdepth 1 -name '*.testing' -mtime "+${max_package_age_broken_testing}" -printf '%f\n' \
+ find "${work_dir}/package-states" -mindepth 1 -maxdepth 1 -name '*.testing' -mtime "+${max_package_age_broken_testing}" -printf '%f\n' | \
sed '
s|\.testing$||
'