-
-
Notifications
You must be signed in to change notification settings - Fork 270
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix julia#55850 by using safe_realpath instead of abspath in projname #4025
Conversation
projname
from REPL.jl
@IanButterworth This is also ready for review. |
Just to highlight because the diff isn't clear in either PR, the difference between the two projnames is that Pkg uses I don't see an issue switching over because there's no side effects/caching of the project in either. Pkg's
REPL's
|
In my opinion I rather have some code duplication than start reaching into the internals of things. But that's just my opinion. |
Ok, let's just implement the JuliaLang/julia#55851 fix in both then. Sorry @christiangnrd for the flip flop |
projname
from REPL.jl3f67e3f
to
d15bf56
Compare
Co-authored-by: Ian Butterworth <i.r.butterworth@gmail.com>
This comment was marked as outdated.
This comment was marked as outdated.
Co-authored-by: Ian Butterworth <i.r.butterworth@gmail.com>
920be4b
to
55f8bd9
Compare
55f8bd9
to
a492983
Compare
This seems good to go on all platforms now. |
…#4025) * Update REPLExt.jl * Add test * Update test/repl.jl Co-authored-by: Ian Butterworth <i.r.butterworth@gmail.com> * Update test/repl.jl Co-authored-by: Ian Butterworth <i.r.butterworth@gmail.com> * Fix windows tests --------- Co-authored-by: Ian Butterworth <i.r.butterworth@gmail.com> (cherry picked from commit 2ad377f)
Replaces
REPLExt.projname
withREPL.projname
since they are identical.Will solve JuliaLang/julia#55850 for situations where Pkg is loaded once JuliaLang/julia#55851 is merged.
Test will be covered by JuliaLang/julia#55851.