diff options
| author | Orhun Parmaksız <orhunparmaksiz@gmail.com> | 2023-09-28 12:22:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-28 11:22:06 +0100 |
| commit | f0a0cdc58bc25bd389ddec684c7c094bddb7bdeb (patch) | |
| tree | e4ebe96dd043cae7789ea1e15465aa64abfcfec7 | |
| parent | handle missing entries (fixes #1236) (#1253) (diff) | |
| download | atuin-f0a0cdc58bc25bd389ddec684c7c094bddb7bdeb.zip | |
feat(installer): try installing via paru for the AUR (#1262)
Diffstat (limited to '')
| -rwxr-xr-x | install.sh | 5 |
1 files changed, 4 insertions, 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 |
