diff options
author | Xiao Pan <gky44px1999@gmail.com> | 2024-01-10 17:31:53 +0000 |
---|---|---|
committer | Xiao Pan <gky44px1999@gmail.com> | 2024-01-10 17:32:23 +0000 |
commit | d23b78da60f18078107b4d6b32c10c335f1a4b8b (patch) | |
tree | d40ed82992f3bc597ffe1667cfd9e5d3922c4859 /home | |
parent | 4e2381c7dfeb15881be52f5474f0d265be8d8206 (diff) |
workaround paru regression or fix my script bug
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 796ea326..7e5665ad 100755 --- a/home/xyz/.local/bin/upd +++ b/home/xyz/.local/bin/upd @@ -31,7 +31,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 |