Pacman answers its own conflict question with No under --noconfirm, so one retired package can stop every update after it. Which package to drop is a decision rather than a cleanup, so run the upgrade again with pacman asking when there is a terminal to answer on, and report instead when -y promised not to ask. Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
40 lines
1.6 KiB
Bash
Executable File
40 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Update system packages with pacman
|
|
# omarchy:requires-sudo=true
|
|
|
|
set -e
|
|
|
|
# The conflict handler's last resort: pacman puts its questions to the person
|
|
# running the update instead of answering them itself. Nothing here may capture
|
|
# a stream, because an upgrade without --noconfirm prompts on stderr. The
|
|
# handler has already said why, so no heading here either.
|
|
if [[ ${OMARCHY_UPDATE_CONFLICT:-} == 1 && ${OMARCHY_UPDATE_INTERACTIVE:-} == 1 ]]; then
|
|
exec sudo env OMARCHY_UPDATE_PACMAN=1 pacman -Syu --overwrite '/usr/share/omarchy/*'
|
|
fi
|
|
|
|
echo -e "\e[32m\nUpdate system packages\e[0m"
|
|
|
|
errors=$(mktemp)
|
|
trap 'rm -f "$errors"' EXIT
|
|
|
|
# /usr/share/omarchy is wholly Omarchy's; files can land there unowned and would
|
|
# otherwise abort the upgrade. Packaged content wins there.
|
|
#
|
|
# Progress bars stay on stdout. Errors are on stderr, kept for the conflict
|
|
# handler below; LC_ALL=C is what keeps them parseable in any locale.
|
|
if sudo env LC_ALL=C OMARCHY_UPDATE_PACMAN=1 pacman -Syu --noconfirm \
|
|
--overwrite '/usr/share/omarchy/*' 2>"$errors"; then
|
|
cat "$errors" >&2
|
|
exit 0
|
|
fi
|
|
cat "$errors" >&2
|
|
|
|
# The handler takes it from here: it clears files pacman doesn't own yet and
|
|
# runs this again, and puts a package conflict to whoever started the update.
|
|
# Anything else, including a second failure, is for a human.
|
|
[[ ${OMARCHY_UPDATE_RETRY:-} != 1 ]] || exit 1
|
|
# exec, so the EXIT trap above does not fire and the handler can still read the
|
|
# report. It takes over deleting it.
|
|
exec env OMARCHY_UPDATE_CONFLICT=1 omarchy-update-system-pkgs-when-conflicted "$errors"
|