Set COPYFILE_DISABLE for mac os so it doesn't generate ._ files (#35213)

This commit is contained in:
sakridge 2024-02-16 21:58:06 +01:00 committed by GitHub
parent 6fc8a6135d
commit e4064023bf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -4315,6 +4315,7 @@ pub fn create_new_ledger(
blockstore_dir,
];
let output = std::process::Command::new("tar")
.env("COPYFILE_DISABLE", "1")
.args(args)
.output()
.unwrap();