From cc4d41bdaace241d45b1797dfcd9f39e9739fd7d Mon Sep 17 00:00:00 2001 From: oricol <182468548+taylorminton@users.noreply.github.com> Date: Sat, 23 Aug 2025 00:43:12 -0500 Subject: [PATCH] Include VerbosePkgLists for better pacman -Syu (#1003) * Include VerbosePkgLists for better pacman -Syu * Add migration for the verbose package lists * Amend comment --------- Co-authored-by: David Heinemeier Hansson --- install/preflight/aur.sh | 4 ++-- migrations/1755920552.sh | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 migrations/1755920552.sh diff --git a/install/preflight/aur.sh b/install/preflight/aur.sh index e363b0ef..da71f43f 100644 --- a/install/preflight/aur.sh +++ b/install/preflight/aur.sh @@ -36,7 +36,7 @@ if ! command -v yay &>/dev/null; then cd ~ fi -# Add fun and color to the pacman installer +# Add fun and color and verbosity to the pacman installer if ! grep -q "ILoveCandy" /etc/pacman.conf; then - sudo sed -i '/^\[options\]/a Color\nILoveCandy' /etc/pacman.conf + sudo sed -i '/^\[options\]/a Color\nILoveCandy\nVerbosePkgLists' /etc/pacman.conf fi diff --git a/migrations/1755920552.sh b/migrations/1755920552.sh new file mode 100644 index 00000000..665da17c --- /dev/null +++ b/migrations/1755920552.sh @@ -0,0 +1,3 @@ +echo "Use verbose package lists for pacman" + +sudo sed -i '/^ILoveCandy$/a VerbosePkgLists' /etc/pacman.conf