Unverified Commit c5c451ca authored by Michael Yang's avatar Michael Yang Committed by GitHub
Browse files

Merge pull request #3579 from ollama/mxyng/fix-ci

fix ci
parents ad90b9ab 2b4ca6cf
...@@ -5,7 +5,6 @@ on: ...@@ -5,7 +5,6 @@ on:
paths: paths:
- '**/*' - '**/*'
- '!docs/**' - '!docs/**'
- '!examples/**'
- '!README.md' - '!README.md'
jobs: jobs:
......
...@@ -24,10 +24,5 @@ func NewTray() (commontray.OllamaTray, error) { ...@@ -24,10 +24,5 @@ func NewTray() (commontray.OllamaTray, error) {
return nil, fmt.Errorf("failed to load icon %s: %w", iconName, err) return nil, fmt.Errorf("failed to load icon %s: %w", iconName, err)
} }
tray, err := InitPlatformTray(icon, updateIcon) return InitPlatformTray(icon, updateIcon)
if err != nil {
return nil, err
}
return tray, nil
} }
...@@ -5,7 +5,7 @@ import ( ...@@ -5,7 +5,7 @@ import (
"fmt" "fmt"
"log" "log"
"github.com/jmorganca/ollama/api" "github.com/ollama/ollama/api"
) )
func main() { func main() {
......
...@@ -5,7 +5,7 @@ import ( ...@@ -5,7 +5,7 @@ import (
"fmt" "fmt"
"log" "log"
"github.com/jmorganca/ollama/api" "github.com/ollama/ollama/api"
) )
func main() { func main() {
......
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