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 30bf5be commit 9aa6784Copy full SHA for 9aa6784
mirror.sh
@@ -162,7 +162,11 @@ do_file() {
162
163
(
164
cd "${outdir}" || exit
165
- git config tar.tar.gz.command gzip
+ # Some versions of git by default use the internal gzip
166
+ # implementation, others use external gzip; standardize this
167
+ # -n is used for older versions of git that record gzip creation
168
+ # date/time
169
+ git config tar.tar.gz.command "gzip -n"
170
# -T1 avoids non-determinism due to threading
171
# This may not be correct for forges other than Savannah
172
git config tar.tar.xz.command "xz -T1"
0 commit comments