From 895b2a9175a960f33a9aa0d82a2355c2e7e30e15 Mon Sep 17 00:00:00 2001 From: HsiangNianian Date: Sun, 25 May 2025 02:46:35 +0800 Subject: feat: Add check script to verify presence of PKGBUILD in recent commits --- scripts/check.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 scripts/check.sh (limited to 'scripts/check.sh') 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 -- cgit v1.2.3-70-g09d2 From 235acea75f2a841d941753cd98d133ce0f17cf74 Mon Sep 17 00:00:00 2001 From: HsiangNianian Date: Sun, 25 May 2025 03:13:42 +0800 Subject: feat: Update version to 0.1.2 in .SRCINFO and source URL --- scripts/check.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'scripts/check.sh') diff --git a/scripts/check.sh b/scripts/check.sh index 0b6f370..1db882a 100644 --- a/scripts/check.sh +++ b/scripts/check.sh @@ -1,4 +1,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 \ No newline at end of file +done +makepkg --printsrcinfo > .SRCINFO \ No newline at end of file -- cgit v1.2.3-70-g09d2