We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1775a9e commit 510ae2eCopy full SHA for 510ae2e
Sources/unidoc-publish/Main.swift
@@ -59,9 +59,10 @@ extension AWS.S3.Client
59
print("Compressing \(name)...")
60
61
try SystemProcess.init(command: "tar",
62
- "--use-compress-program='gzip -9'",
+ // Sadly, tar on macOS doesn’t support this option.
63
+ // "--use-compress-program='gzip -9'",
64
"-C", "\(release)",
- "-cf", "\(archive)",
65
+ "-czf", "\(archive)",
66
name)()
67
let file:[UInt8] = try archive.read()
68
0 commit comments