Skip to content

Commit

Permalink
%APPDATA% is not inside home directory
Browse files Browse the repository at this point in the history
thanks to @hhaensel (ref #236 (comment))
  • Loading branch information
shashi authored Apr 18, 2019
1 parent 8e4ba94 commit 540848e
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 540848e

Please sign in to comment.