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 0a3ca9a commit bd46032Copy full SHA for bd46032
lib/ffdocs/data/ffmpeg.tar.zst
18.2 KB
lib/ffdocs/storage.rb
@@ -110,11 +110,16 @@ def run!
110
system(
111
{ "ZSTD_CLEVEL" => "19" },
112
"tar",
113
- "-C", tmpdir.to_s,
+ "--sort=name",
114
"--mtime=2000-01-01T00:00:00Z",
115
+ "--owner=0",
116
+ "--group=0",
117
+ "--numeric-owner",
118
+ "--format=ustar",
119
"--zstd",
120
"-cf", DATA_FILE.to_s,
121
".",
122
+ chdir: tmpdir.to_s,
123
)
124
end
125
0 commit comments