-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
MacOS app: make julia directory read only #38235
Conversation
685f05c
to
3269841
Compare
2646a0d
to
b705101
Compare
This is required to make the Julia directory read-only (JuliaLang/julia#38235)
This requires JuliaWeb/LibCURL.jl#92 to be merged and the version of LibCURL to be updated. |
This is required to make the Julia directory read-only (JuliaLang/julia#38235)
I've merged the LibCURL PR, how do I update the stdlib? |
I use this shell incantation run from the git repo of the stdlib that you want to bump: pkg=LibCURL; ver=HEAD; echo "$(echo -n $pkg | tr a-z A-Z)_BRANCH = $(git rev-parse --symbolic-full-name HEAD | perl -ple 's{^refs/heads/}{}')\n$(echo -n $pkg | tr a-z A-Z)_SHA1 = $(git rev-parse $ver)" > ~/dev/julia/stdlib/$pkg.version Then you have to go into |
#38235 appears to cause problems - it seems to break GitHub Actions: https://github.com/JuliaParallel/MPI.jl/runs/1345656760?check_suite_focus=true#step:4:33 - it now requires a password to upgrade a patch release (which replace the `/Applications/Julia-1.6.app` directory) It might be possible to fix th
PR #38235 seemed to cause problems: - it seems to break GitHub Actions: https://github.com/JuliaParallel/MPI.jl/runs/1345656760?check_suite_focus=true#step:4:33 - it now requires a password to upgrade a patch release (which replace the `/Applications/Julia-1.6.app` directory) This makes only the files read-only, which should solve the problem
PR #38235 seemed to cause problems: - it seems to break GitHub Actions: https://github.com/JuliaParallel/MPI.jl/runs/1345656760?check_suite_focus=true#step:4:33 - it now requires a password to upgrade a patch release (which replace the `/Applications/Julia-1.6.app` directory) This makes only the files read-only, which should solve the problem
Fix #38146.