summaryrefslogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorOrhun Parmaksız <orhunparmaksiz@gmail.com>2023-09-28 12:22:06 +0200
committerGitHub <noreply@github.com>2023-09-28 11:22:06 +0100
commitf0a0cdc58bc25bd389ddec684c7c094bddb7bdeb (patch)
treee4ebe96dd043cae7789ea1e15465aa64abfcfec7 /install.sh
parentfc1a48a4f204dfe77bd8d4f82cfb3e64ade9d028 (diff)
feat(installer): try installing via paru for the AUR (#1262)
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index 07c16942..db63d6ca 100755
--- a/install.sh
+++ b/install.sh
@@ -44,7 +44,10 @@ __atuin_install_arch(){
sudo pacman -S atuin
else
echo "Attempting AUR install"
- if command -v yaourt &> /dev/null; then
+ if command -v paru &> /dev/null; then
+ echo "Found paru"
+ paru -S atuin
+ elif command -v yaourt &> /dev/null; then
echo "Found yaourt"
yaourt -S atuin
elif command -v yay &> /dev/null; then