mirror of
https://github.com/atuinsh/atuin.git
synced 2025-01-11 16:59:09 +01:00
feat(installer): try installing via paru for the AUR (#1262)
This commit is contained in:
parent
fc1a48a4f2
commit
f0a0cdc58b
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user