1
1
mirror of https://github.com/ellie/atuin.git synced 2024-08-17 17:00:33 +03:00

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