From 7c75cbbcd539ba91520884ea84eeed05f55965d0 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 22 Jul 2025 18:08:31 -0400 Subject: [PATCH] Ensure indexes are up to date from boot.sh instead --- boot.sh | 2 +- install.sh | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/boot.sh b/boot.sh index b5ac24b..3ff9965 100755 --- a/boot.sh +++ b/boot.sh @@ -12,7 +12,7 @@ ansi_art=' ▄██████▄ ▄▄▄▄███▄▄▄▄ echo -e "\n$ansi_art\n" -pacman -Q git &>/dev/null || sudo pacman -Sy --noconfirm --needed git +sudo pacman -Sy --noconfirm --needed git echo -e "\nCloning Omarchy..." rm -rf ~/.local/share/omarchy/ diff --git a/install.sh b/install.sh index 1d78ce5..a329185 100755 --- a/install.sh +++ b/install.sh @@ -12,9 +12,6 @@ catch_errors() { trap catch_errors ERR -# Update all package indexes -sudo pacman -Sy --noconfirm - # Install everything for f in ~/.local/share/omarchy/install/*.sh; do echo -e "\nRunning installer: $f"