diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-09-10 06:35:40 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-09-10 06:35:40 -0400 |
| commit | 3fea7e524d5c8eccaf85adcbbda509f20de9c799 (patch) | |
| tree | f22add9dd1eb6aa8699ba299120b4c68751f93c8 | |
| parent | 4d2b50f9cf0765e842ed55fde2b2f0d12d96c9d7 (diff) | |
| download | sbostuff-3fea7e524d5c8eccaf85adcbbda509f20de9c799.tar.gz | |
getmaintdependees: silently skip deleted builds.
| -rwxr-xr-x | admin/getmaintdependees | 4 |
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) " |
