create .ollama directory if it doesnt exist

This commit is contained in:
Jeffrey Morgan 2023-08-11 15:35:55 -07:00
parent 148f0225c0
commit 1556162c90
2 changed files with 8 additions and 8 deletions

View file

@ -63,11 +63,6 @@ func getAuthToken(redirData AuthRedirect, regOpts *RegistryOptions) (string, err
keyPath := path.Join(home, ".ollama", "id_ed25519")
err = os.MkdirAll(path.Dir(keyPath), 0700)
if err != nil {
return "", fmt.Errorf("could not create .ollama directory %w", err)
}
rawKey, err := os.ReadFile(keyPath)
if err != nil {
log.Printf("Failed to load private key: %v", err)