blob: 1db882ac71df3748285ed035cd133f273c353ffb (
plain) (
blame)
1
2
3
4
5
|
for hash in $(git rev-list --max-count=10 HEAD); do
echo "Checking $hash..."
git ls-tree --name-only -r $hash | grep -q '^PKGBUILD$' || echo "❌ Missing PKGBUILD in $hash"
done
makepkg --printsrcinfo > .SRCINFO
|