From 69e48758fde39c146d525d7c751343cb58f37c64 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 22 Jul 2025 18:06:38 -0400 Subject: [PATCH] Can't actually update all packages before we are ready to reboot Since kernel etc that needs a restart might have updated --- install.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 174c84e..1d78ce5 100755 --- a/install.sh +++ b/install.sh @@ -12,8 +12,8 @@ catch_errors() { trap catch_errors ERR -# Update all built-in packages -sudo pacman -Syu --noconfirm +# Update all package indexes +sudo pacman -Sy --noconfirm # Install everything for f in ~/.local/share/omarchy/install/*.sh; do @@ -24,4 +24,7 @@ done # Ensure locate is up to date now that everything has been installed sudo updatedb +# Update all built-in packages +sudo pacman -Syu --noconfirm + gum confirm "Reboot to apply all settings?" && reboot