diff options
author | Xiao Pan <gky44px1999@gmail.com> | 2023-11-04 02:14:53 -0700 |
---|---|---|
committer | Xiao Pan <gky44px1999@gmail.com> | 2023-11-04 02:14:53 -0700 |
commit | 3d81f9bd8325ac24619f56e1318becf6a5742a21 (patch) | |
tree | 79c0b0a1d4ac735af579b17f4ad75a1af74a1c55 /home/xyz/.local | |
parent | e8af9d03c8473d276408b4150553eb65a8c399c0 (diff) |
temp workaround for nvidia-util and nvidia version not match cause no update bug
Diffstat (limited to 'home/xyz/.local')
-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 aa762fb7..5496053a 100755 --- a/home/xyz/.local/bin/upd +++ b/home/xyz/.local/bin/upd @@ -67,7 +67,7 @@ misc () { } pac () { - pacpacs="$(sudo pacman --noconfirm -Syu | tee /dev/tty | grep '^Packages' | cut -d' ' -f3-)" + pacpacs="$(sudo pacman --noconfirm -Syu --ignore nvidia-utils | tee /dev/tty | grep '^Packages' | cut -d' ' -f3-)" aurpacs="$(paru --noconfirm -aSu --ignore libredwg-git --ignore searxng-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 |