diff options
author | xyz <gky44px1999@gmail.com> | 2022-10-13 01:31:14 -0700 |
---|---|---|
committer | xyz <gky44px1999@gmail.com> | 2022-10-13 01:31:14 -0700 |
commit | 5e0b92662620eefdf0d4d0e519e38e4a211db227 (patch) | |
tree | 231068d6e04932fe16cbeaeffe963969a5d74c68 /home | |
parent | ac9f2ca2c2bdec48472d2ea807c3171679edab81 (diff) |
paru no need -Sy, -Sy is been done by pacman beforehand
Diffstat (limited to 'home')
-rwxr-xr-x | home/xyz/.local/bin/upd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/xyz/.local/bin/upd b/home/xyz/.local/bin/upd index 51fc6e14..26ec61e2 100755 --- a/home/xyz/.local/bin/upd +++ b/home/xyz/.local/bin/upd @@ -81,7 +81,7 @@ ncm () { pac () { pacpacs="$(sudo pacman --noconfirm -Syu | tee /dev/tty | grep '^Packages' | cut -d' ' -f3-)" - aurpacs="$(paru --noconfirm -aSyu --ignore freeorion-git | tee /dev/tty | grep '^Aur' | cut -d' ' -f3-)" + aurpacs="$(paru --noconfirm -aSu --ignore freeorion-git | tee /dev/tty | grep '^Aur' | cut -d' ' -f3-)" # part steal from aur comment # sometimes "ERROR: Failure while downloading": https://github.com/neovim/neovim/issues/15709 # echo 1, printf 1 and yes 1 all works? not sure why |