feat(installer): try installing via paru for the AUR (#1262)
This commit is contained in:
parent
fc1a48a4f2
commit
f0a0cdc58b
1 changed files with 4 additions and 1 deletions
|
@ -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 a new issue