aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-09-10 06:35:40 -0400
committerB. Watson <urchlay@slackware.uk>2026-09-10 06:35:40 -0400
commit3fea7e524d5c8eccaf85adcbbda509f20de9c799 (patch)
treef22add9dd1eb6aa8699ba299120b4c68751f93c8
parent4d2b50f9cf0765e842ed55fde2b2f0d12d96c9d7 (diff)
downloadsbostuff-3fea7e524d5c8eccaf85adcbbda509f20de9c799.tar.gz
getmaintdependees: silently skip deleted builds.
-rwxr-xr-xadmin/getmaintdependees4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/getmaintdependees b/admin/getmaintdependees
index 5673f85..4e9305b 100755
--- a/admin/getmaintdependees
+++ b/admin/getmaintdependees
@@ -38,8 +38,8 @@ for i in $builds; do
can_orphan=yes
for j in "$@"; do
echo -n "$j "
- cdsb $j
- source ./$j.info
+ cdsb $j &>/dev/null || continue
+ source ./$j.info &>/dev/null || continue
if [ "$MAINTAINER" != "$maint" -a "$EMAIL" != "NOEMAIL" ]; then
can_orphan=no
echo -n "('$MAINTAINER' $EMAIL) "