blob: 88a1e87db4437c51bda7c3bd8918a3f5b635bb39 (
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
|