-
-
Notifications
You must be signed in to change notification settings - Fork 273
Fix julia#55850 by using safe_realpath instead of abspath in projname #4025
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
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.jlCo-authored-by: Ian Butterworth <[email protected]>
This comment was marked as outdated.
This comment was marked as outdated.
Co-authored-by: Ian Butterworth <[email protected]>
This seems good to go on all platforms now. |
…#4025) * Update REPLExt.jl * Add test * Update test/repl.jl Co-authored-by: Ian Butterworth <[email protected]> * Update test/repl.jl Co-authored-by: Ian Butterworth <[email protected]> * Fix windows tests --------- Co-authored-by: Ian Butterworth <[email protected]> (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.