From 40d850fdb3f8225b7a355e1661c9ba4c463852a0 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 17 Aug 2025 10:09:23 -0400 Subject: [PATCH] If NOT starship, install it --- migrations/1755436367.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrations/1755436367.sh b/migrations/1755436367.sh index cb89bf9a..11f832d7 100644 --- a/migrations/1755436367.sh +++ b/migrations/1755436367.sh @@ -1,6 +1,6 @@ echo "Add minimal starship prompt to terminal" -if command -v starship &>/dev/null; then +if ! command -v starship &>/dev/null; then yay -S --noconfirm starship cp $OMARCHY_PATH/config/starship.toml ~/.config/starship.toml fi