Fixed Pacaur aliases (#6416)

`pacaur -Syua` only updated AUR pakcages, wihch is incompatible with semantics of `pacupg` and `yaupg`. Removing `-a` here it would work for both main repos and aur.
This commit is contained in:
Ning Sun 2017-11-14 08:35:55 -06:00 committed by Robby Russell
parent 41eedd3700
commit 2bd24f7e0d
1 changed files with 2 additions and 2 deletions

View File

@ -28,8 +28,8 @@ if (( $+commands[yaourt] )); then
fi
if (( $+commands[pacaur] )); then
alias paupg='pacaur -Syua'
alias pasu='pacaur -Syua --noconfirm'
alias paupg='pacaur -Syu'
alias pasu='pacaur -Syu --noconfirm'
alias pain='pacaur -S'
alias pains='pacaur -U'
alias pare='pacaur -R'