Skip to content

Commit 2b86c15

Browse files
committed
replicate tmc-server permissions
1 parent 6a93b9b commit 2b86c15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tmc-langs-util/src/task_executor/course_refresher.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ fn set_permissions(path: &Path) -> Result<(), UtilError> {
388388
use nix::sys::stat;
389389
use std::os::unix::io::AsRawFd;
390390

391-
let chmod: ModeBits = 0o555; // octal, read and execute permissions for all users
391+
let chmod: ModeBits = 0o775; // octal, read and execute permissions for all users
392392
for entry in WalkDir::new(path) {
393393
let entry = entry?;
394394
let file = file_util::open_file(entry.path())?;

0 commit comments

Comments
 (0)