aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/scripts/check.sh
blob: c6b4afdbe23012fcf3d4605ce994667c6adc915e (plain) (blame)
1
2
3
4
5
6
7
cd ../aur
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
cd ..