mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-22 11:06:32 +01:00
Avoid recording gzip creation time in mirror.sh
This commit is contained in:
parent
30bf5be8ff
commit
9aa6784b15
1 changed files with 5 additions and 1 deletions
|
|
@ -162,7 +162,11 @@ do_file() {
|
||||||
|
|
||||||
(
|
(
|
||||||
cd "${outdir}" || exit
|
cd "${outdir}" || exit
|
||||||
git config tar.tar.gz.command gzip
|
# Some versions of git by default use the internal gzip
|
||||||
|
# implementation, others use external gzip; standardize this
|
||||||
|
# -n is used for older versions of git that record gzip creation
|
||||||
|
# date/time
|
||||||
|
git config tar.tar.gz.command "gzip -n"
|
||||||
# -T1 avoids non-determinism due to threading
|
# -T1 avoids non-determinism due to threading
|
||||||
# This may not be correct for forges other than Savannah
|
# This may not be correct for forges other than Savannah
|
||||||
git config tar.tar.xz.command "xz -T1"
|
git config tar.tar.xz.command "xz -T1"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue