feat(installer): try installing via paru for the AUR (#1262)

This commit is contained in:
Orhun Parmaksız 2023-09-28 12:22:06 +02:00 committed by GitHub
parent fc1a48a4f2
commit f0a0cdc58b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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