summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xdb-update6
1 files changed, 5 insertions, 1 deletions
diff --git a/db-update b/db-update
index a36199e..e2b2741 100755
--- a/db-update
+++ b/db-update
@@ -75,7 +75,11 @@ for repo in "${repos[@]}"; do
die "Package %s already exists in another repository" "$repo/${pkg##*/}"
fi
if ! check_packager "${pkg}"; then
- die "Package %s does not have a valid packager" "$repo/${pkg##*/}"
+ if [[ $DBSCRIPTS_CONFIG = *.archlinux32 ]]; then
+ warning "Package %s does not have a valid packager" "$repo/${pkg##*/}"
+ else
+ die "Package %s does not have a valid packager" "$repo/${pkg##*/}"
+ fi
fi
if ! check_buildinfo "${pkg}"; then
die "Package %s does not have a .BUILDINFO file" "$repo/${pkg##*/}"