Skip to content

Commit 58d9c87

Browse files
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]>
1 parent 82fbf54 commit 58d9c87

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
@@ -2084,7 +2084,7 @@ function compilecache(pkg::PkgId, path::String, internal_stderr::IO = stderr, in
20842084
# Ensure that the user can execute the `.so` we're generating
20852085
# Note that on windows, `filemode(path)` typically returns `0o666`, so this
20862086
# addition of the execute bit for the user is doubly needed.
2087-
chmod(tmppath_so, filemode(path) & 0o777 | 0o300)
2087+
chmod(tmppath_so, filemode(path) & 0o777 | 0o333)
20882088
end
20892089

20902090
# prune the directory with cache files

0 commit comments

Comments
 (0)