blob: 0b6f370e272b5031ebd19c3e9b26eb3d89f79aad (
plain) (
blame)
1
2
3
4
|
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
|