Skip to content

Commit

Permalink
Merge pull request #276 from JuliaGizmos/s/fix-windoz
Browse files Browse the repository at this point in the history
%APPDATA% is not inside home directory
  • Loading branch information
pfitzseb authored Apr 20, 2019
2 parents 8e4ba94 + 540848e commit 333309a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/build.jl
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function get_jupyter_datadir()
# https://jupyter.readthedocs.io/en/latest/projects/jupyter-directories.html
if Sys.iswindows()
# Is this right?
return joinpath(homedir(), "%APPDATA%", "jupyter")
return joinpath("%APPDATA%", "jupyter")
elseif Sys.isapple()
return joinpath(homedir(), "Library", "Jupyter")
else
Expand Down

0 comments on commit 333309a

Please sign in to comment.