summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml2
-rw-r--r--PKGBUILD2
-rw-r--r--scripts/check.sh6
3 files changed, 4 insertions, 6 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 2209a7d..92571cf 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"
diff --git a/PKGBUILD b/PKGBUILD
index 9ba2713..826d0ad 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -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 ..