Commit 2bd24f7e authored by Ning Sun's avatar Ning Sun Committed by Robby Russell
Browse files

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.
parent 41eedd37
...@@ -28,8 +28,8 @@ if (( $+commands[yaourt] )); then ...@@ -28,8 +28,8 @@ if (( $+commands[yaourt] )); then
fi fi
if (( $+commands[pacaur] )); then if (( $+commands[pacaur] )); then
alias paupg='pacaur -Syua' alias paupg='pacaur -Syu'
alias pasu='pacaur -Syua --noconfirm' alias pasu='pacaur -Syu --noconfirm'
alias pain='pacaur -S' alias pain='pacaur -S'
alias pains='pacaur -U' alias pains='pacaur -U'
alias pare='pacaur -R' alias pare='pacaur -R'
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment