From 5b654d028249f4fa7f6bf7db3d6a0e62a0a91e8f Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 26 Jul 2025 13:02:22 -0400 Subject: [PATCH] Be careful not to exit the entire migration runner --- migrations/1752983008.sh | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/migrations/1752983008.sh b/migrations/1752983008.sh index 5b4b8da..a18b072 100644 --- a/migrations/1752983008.sh +++ b/migrations/1752983008.sh @@ -1,8 +1,7 @@ -# do not run if user is using bare mode -if [[ -f ~/.local/state/omarchy/bare.mode ]]; then exit; fi +if [[ ! -f ~/.local/state/omarchy/bare.mode ]]; then + echo "Add missing installation of Zoom" -echo "Add missing installation of Zoom" - -if ! command -v zoom &>/dev/null; then - yay -S --noconfirm --needed zoom + if ! command -v zoom &>/dev/null; then + yay -S --noconfirm --needed zoom + fi fi