diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/check.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/check.sh b/scripts/check.sh new file mode 100644 index 0000000..0b6f370 --- /dev/null +++ b/scripts/check.sh @@ -0,0 +1,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
\ No newline at end of file |