Skip to content

Commit

Permalink
Fix permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
fpseverino committed Sep 22, 2024
1 parent 776bfa8 commit f371520
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Zip/Zip.swift
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public class Zip {
FilePath(fullPath),
.writeOnly,
options: [.append, .create],
permissions: .ownerReadWrite
permissions: FilePermissions(rawValue: 0o644)
)
try fd.closeAfter {
while true {
Expand Down

0 comments on commit f371520

Please sign in to comment.