Skip to content

Commit 6ae7827

Browse files
gbaraldistaticfloat
authored andcommitted
Change permissions of stdlib pkgimgs (#48019)
* Change permissions of pkgimgs * Update base/loading.jl Co-authored-by: Elliot Saba <[email protected]> Co-authored-by: Elliot Saba <[email protected]> (cherry picked from commit 58d9c87)
1 parent 8089822 commit 6ae7827

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/loading.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2078,7 +2078,7 @@ function compilecache(pkg::PkgId, path::String, internal_stderr::IO = stderr, in
20782078
# Ensure that the user can execute the `.so` we're generating
20792079
# Note that on windows, `filemode(path)` typically returns `0o666`, so this
20802080
# addition of the execute bit for the user is doubly needed.
2081-
chmod(tmppath_so, filemode(path) & 0o777 | 0o300)
2081+
chmod(tmppath_so, filemode(path) & 0o777 | 0o333)
20822082
end
20832083

20842084
# prune the directory with cache files

0 commit comments

Comments
 (0)