From 0148a1dfc02f48c1c9459254870088463ee175f9 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Fri, 14 Nov 2025 02:58:13 -0600 Subject: fix(archsetup): prevent yay-debug package installation during yay build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add --nodebug flag to makepkg command when building yay from source to prevent creation and installation of yay-debug package. This completes the --nodebug implementation started in the previous commit. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- archsetup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archsetup b/archsetup index 5b43988..afa6a77 100755 --- a/archsetup +++ b/archsetup @@ -372,7 +372,7 @@ aur_installer () { fi action="packaging and installing yay"; display "task" "$action" - (cd "$build_dir" && sudo -u "$username" makepkg --noconfirm -si >> "$logfile" 2>&1) || \ + (cd "$build_dir" && sudo -u "$username" makepkg --noconfirm --nodebug -si >> "$logfile" 2>&1) || \ error "crash" "$action" "$?" } -- cgit v1.2.3