summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-11-14 02:58:13 -0600
committerCraig Jennings <c@cjennings.net>2025-11-14 02:58:13 -0600
commit0148a1dfc02f48c1c9459254870088463ee175f9 (patch)
tree64828cefdd6e3b6f9bc353d60bcab0e0423fd2b6
parent2e10a8856d0bdd4c8f77c53320221ad1b8deaa13 (diff)
fix(archsetup): prevent yay-debug package installation during yay build
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 <noreply@anthropic.com>
-rwxr-xr-xarchsetup2
1 files changed, 1 insertions, 1 deletions
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" "$?"
}