Skip to content

Commit

Permalink
Merge pull request #12 from janpfeifer/macinstall
Browse files Browse the repository at this point in the history
Fixed Mac install directory.
  • Loading branch information
janpfeifer authored Mar 24, 2023
2 parents a2a077a + bb9ef92 commit 521ccb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func Install(extraArgs []string, force bool) error {
case "linux":
configDir = path.Join(home, ".local/share/jupyter/kernels/gonb")
case "darwin":
configDir = path.Join(home, "Library/Jupyter/kernels/")
configDir = path.Join(home, "Library/Jupyter/kernels/gonb")
default:
return errors.Errorf("Unknown OS %q: not sure how to install GoNB.", runtime.GOOS)
}
Expand Down

0 comments on commit 521ccb1

Please sign in to comment.