diff options
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | PKGBUILD | 2 | ||||
| -rw-r--r-- | scripts/check.sh | 6 |
3 files changed, 4 insertions, 6 deletions
@@ -1,6 +1,6 @@ [package] name = "soon" -version = "0.1.3" +version = "0.1.4" edition = "2021" description = "Predict your next shell command based on history — like shell autocomplete, but MORE stupid" license = "MIT" @@ -1,5 +1,5 @@ pkgname=soon -pkgver=0.1.2 +pkgver=0.1.4 pkgrel=1 pkgdesc="🤖 Predict your next shell command based on history — like shell autocomplete, but MORE stupid" arch=('x86_64') diff --git a/scripts/check.sh b/scripts/check.sh index 9769507..c6b4afd 100644 --- a/scripts/check.sh +++ b/scripts/check.sh @@ -1,9 +1,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 -<<<<<<< HEAD makepkg --printsrcinfo > .SRCINFO -======= -makepkg --printsrcinfo > .SRCINFO ->>>>>>> dab388da8e452a4f82f1297bf20c48254028d1c1 +cd .. |