summaryrefslogtreecommitdiff
path: root/db-update
diff options
context:
space:
mode:
Diffstat (limited to 'db-update')
-rwxr-xr-xdb-update6
1 files changed, 5 insertions, 1 deletions
diff --git a/db-update b/db-update
index 925b389..be67595 100755
--- a/db-update
+++ b/db-update
@@ -89,7 +89,11 @@ for repo in "${repos[@]}"; do
fi
fi
if ! check_builddir "${pkg}"; then
- die "Package %s was not built in a chroot" "$repo/${pkg##*/}"
+ if [[ $DBSCRIPTS_CONFIG = *.archlinuxarm ]]; then
+ warning "Package %s was not built in a chroot" "$repo/${pkg##*/}"
+ else
+ die "Package %s was not built in a chroot" "$repo/${pkg##*/}"
+ fi
fi
done
if ! check_splitpkgs "${repo}" "${pkgs[@]}"; then