diff options
author | Xiao Pan <gky44px1999@gmail.com> | 2024-01-10 09:31:17 -0800 |
---|---|---|
committer | Xiao Pan <gky44px1999@gmail.com> | 2024-01-10 09:31:17 -0800 |
commit | e0c7c5345069ae8527b27b385e546c23ee2f4eba (patch) | |
tree | d13d09b49680c6fc2df3968afa8b7d95ab65a47d /home/xyz/.local/bin | |
parent | 50330ea86b5cbb78bf2b0b6d6f49dc0c40ad831c (diff) |
workaround paru regression or fix my script bug
Diffstat (limited to 'home/xyz/.local/bin')
-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 884778a4..05d9f51d 100755 --- a/home/xyz/.local/bin/upd +++ b/home/xyz/.local/bin/upd @@ -59,7 +59,7 @@ pac () { pacpacs="$(sudo pacman --noconfirm -Syu | tee /dev/tty | grep -m1 '^Packages' | cut -d' ' -f3-)" # Update rust toolchains before paru so paru can compile things in newest rust if needed. rustup update - aurpacs="$(paru --noconfirm -aSu | tee /dev/tty | grep -m1 '^Aur' | cut -d' ' -f3-)" + aurpacs="$(paru --color never --noconfirm -aSu | tee /dev/tty | grep -m1 '^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 |