You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently only the site-wide config, that in the CWD, and things in LOAD_PATH are looked for. It would be nice to look for a "dot" file in the home directory as well.
I would submit a pull request but I have not yet grokked how to develop Pkgs in julia
The text was updated successfully, but these errors were encountered:
I think this would be easily possible by adding homedir()here, maybe like so:
for dir in ["."; homedir(); Pkg.dir(); LOAD_PATH]
fn =joinpath(dir, "Winston.ini")
ifisfile(fn) breakend
fn =joinpath(dir, "Winston", "src", "Winston.ini")
ifisfile(fn) breakendend
I'm not sure about the order though. I guess the file in the home directory should take precedence over the one shipped with the package and the site wide one, but what about the one in CWD?
Currently only the site-wide config, that in the CWD, and things in LOAD_PATH are looked for. It would be nice to look for a "dot" file in the home directory as well.
I would submit a pull request but I have not yet grokked how to develop Pkgs in julia
The text was updated successfully, but these errors were encountered: