diff options
author | Xiao Pan <xyz@flylightning.xyz> | 2025-08-07 15:18:11 +0800 |
---|---|---|
committer | Xiao Pan <xyz@flylightning.xyz> | 2025-08-07 15:18:11 +0800 |
commit | 3271058cc89a3a70b974a517e9f61b78b7b04ab0 (patch) | |
tree | 3723df4292f348b61ffed668a3c21f92336b3a5e /sh | |
parent | 9938622a65e6b029dc11f21f056311fd093b82b9 (diff) |
upd test paru without --noconfirm see if I can check PKGBUILD changes manually
Diffstat (limited to 'sh')
-rwxr-xr-x | sh/upd | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -219,7 +219,7 @@ pac () { pacpacs="$(echo "$pacout" | grep -m1 '^Packages' | cut -d' ' -f3-)" # Update rust toolchains before paru so paru can compile things in newest rust if needed. [ "$hostname" = xyzinsp ] && rustup update - aurout="$(paru --color never --noconfirm -aSu | tee /dev/tty)" + aurout="$(paru --color never -aSu | tee /dev/tty)" aurpacs="$(echo "$aurout" | grep '^Aur' | cut -d' ' -f3-)" # /usr/share/libalpm/hooks/rebuild-detector.hook has a line `NeedsTargets` shows it maybe checkrebuild only upgraded packages by `printf 'zoom\nminiconda3' | checkrebuild` instead of maybe check all by `checkrebuild`, so I think query pacman hook will be faster than run another `checkrebuild` # notes about awk f=1 things see https://git.flylightning.xyz/public_archive_codes/tree/sh/mrt |