diff options
| author | Craig Jennings <c@cjennings.net> | 2025-11-14 02:58:13 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-11-14 02:58:13 -0600 |
| commit | 0148a1dfc02f48c1c9459254870088463ee175f9 (patch) | |
| tree | 64828cefdd6e3b6f9bc353d60bcab0e0423fd2b6 | |
| parent | 2e10a8856d0bdd4c8f77c53320221ad1b8deaa13 (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-x | archsetup | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" "$?" } |
