summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2012-10-16 13:53:57 +0000
committerParabola <dev@list.parabolagnulinux.org>2012-10-16 13:53:57 +0000
commitbe6cff9570eb4e55cfef7a8a83ffd65c37aa2c91 (patch)
tree592ced1cdc577a3f3e49c913d2eae66ccd3a10f3
parentc6542576f04e6dc159e731b50a19f1a10d9d5ff3 (diff)
db-list-unsigned-packages: Ignore missing packages, pass the repo name.
-rwxr-xr-xdb-list-unsigned-packages2
1 files changed, 1 insertions, 1 deletions
diff --git a/db-list-unsigned-packages b/db-list-unsigned-packages
index 26e22eb..3b5a5bd 100755
--- a/db-list-unsigned-packages
+++ b/db-list-unsigned-packages
@@ -34,5 +34,5 @@ shift
for repo in ${PKGREPOS[@]}
do
db="${FTP_BASE}/${repo}/os/${arch}/${repo}.db"
- "$(dirname $0)/db-list-unsigned-packages.py" "$@" < "$db"
+ [ -f "$db" ] && "$(dirname $0)/db-list-unsigned-packages.py" "$repo" "$@" < "$db"
done