fix: don't pack ._ files on MacOS (#2743)
This commit is contained in:
parent
a7323c9805
commit
eaf85607f4
1 changed files with 2 additions and 0 deletions
|
|
@ -117,4 +117,6 @@ def tar (name : String) (dir : FilePath) (file : FilePath)
|
|||
proc {
|
||||
cmd := "tar"
|
||||
args := args ++ #["-f", file.toString, "-C", dir.toString, "."]
|
||||
-- don't pack `._` files on MacOS
|
||||
env := if Platform.isOSX then #[("COPYFILE_DISABLE", "true")] else #[]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue