Commit 40a25bf8 authored by Bruce MacDonald's avatar Bruce MacDonald
Browse files

pr comments

parent 36d6081e
...@@ -531,6 +531,9 @@ func startMacApp(client *api.Client) error { ...@@ -531,6 +531,9 @@ func startMacApp(client *api.Client) error {
if err != nil { if err != nil {
return err return err
} }
if !strings.Contains(link, "Ollama.app") {
return fmt.Errorf("could not find ollama app")
}
path := strings.Split(link, "Ollama.app") path := strings.Split(link, "Ollama.app")
if err := exec.Command("/usr/bin/open", "-a", path[0]+"Ollama.app").Run(); err != nil { if err := exec.Command("/usr/bin/open", "-a", path[0]+"Ollama.app").Run(); err != nil {
return err return err
...@@ -558,7 +561,7 @@ func checkServerHeartbeat(_ *cobra.Command, _ []string) error { ...@@ -558,7 +561,7 @@ func checkServerHeartbeat(_ *cobra.Command, _ []string) error {
} }
if runtime.GOOS == "darwin" { if runtime.GOOS == "darwin" {
if err := startMacApp(client); err != nil { if err := startMacApp(client); err != nil {
return fmt.Errorf("could not connect to ollama app server, run 'ollama serve' to start it") return fmt.Errorf("could not connect to ollama app, is it running?")
} }
} else { } else {
return fmt.Errorf("could not connect to ollama server, run 'ollama serve' to start it") return fmt.Errorf("could not connect to ollama server, run 'ollama serve' to start it")
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment