From c9bacbe318ad91b7d87e77130b409c08197a7b54 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 10 Sep 2025 14:38:46 +0200 Subject: [PATCH] Make gum available as early as possible --- install/preflight/trap-errors.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install/preflight/trap-errors.sh b/install/preflight/trap-errors.sh index 39381f1..ff154cb 100755 --- a/install/preflight/trap-errors.sh +++ b/install/preflight/trap-errors.sh @@ -31,4 +31,7 @@ catch_errors() { fi } +# Ensure gum is available as early as possible to retry errors +sudo pacman -S gum + trap catch_errors ERR