fixed osx permissions (#8901)

This commit is contained in:
Marek Kotewicz 2018-06-14 16:17:40 +02:00 committed by Wei Tang
parent fc86b1799a
commit fd57100190
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ fn create_new_file_with_permissions_to_owner(file_path: &Path) -> io::Result<fs:
fs::OpenOptions::new()
.write(true)
.create_new(true)
.mode(libc::S_IWUSR | libc::S_IRUSR)
.mode((libc::S_IWUSR | libc::S_IRUSR) as u32)
.open(file_path)
}
@ -61,7 +61,7 @@ fn replace_file_with_permissions_to_owner(file_path: &Path) -> io::Result<fs::Fi
let file = fs::File::create(file_path)?;
let mut permissions = file.metadata()?.permissions();
permissions.set_mode(libc::S_IWUSR | libc::S_IRUSR);
permissions.set_mode((libc::S_IWUSR | libc::S_IRUSR) as u32);
file.set_permissions(permissions)?;
Ok(file)