From a60a79a5e1a3e30bb5694d5d3275ce9b95162fb0 Mon Sep 17 00:00:00 2001 From: Bruce MacDonald Date: Tue, 24 Mar 2026 11:07:24 -0700 Subject: [PATCH] install: use explicit path to launch Ollama after install `open -a Ollama` uses Launch Services to resolve the application by name, which can find a stale Ollama.app in ~/Downloads (or elsewhere) instead of the one we just installed to /Applications. When that old copy launches, it prompts "Move to Applications?" and overwrites the new installation with the old version. Use `open "/Applications/Ollama.app"` to launch the exact copy we just installed. --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index 8bff7e2f4..f502429a4 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -85,7 +85,7 @@ if [ "$OS" = "Darwin" ]; then if [ -z "${OLLAMA_NO_START:-}" ]; then status "Starting Ollama..." - open -a Ollama --args hidden + open "/Applications/Ollama.app" --args hidden fi status "Install complete. You can now run 'ollama'."