diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-05-26 09:40:50 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-05-26 09:40:50 -0700 |
commit | b73f3d2c7db2e4d9f02ff9d24852685bcb6fa38a (patch) | |
tree | 32a75abe82da047bab378b884ce0ab1db3fee9b8 | |
parent | 7eacaeffd7c2cda1a50a643a7c0c144fea01c76f (diff) | |
parent | 0c8c385ef188bf76b6edcda87a7cc9bc05596fa3 (diff) | |
download | git-b73f3d2c7db2e4d9f02ff9d24852685bcb6fa38a.tar.gz git-b73f3d2c7db2e4d9f02ff9d24852685bcb6fa38a.tar.xz |
Merge branch 'ft/gitweb-tar-with-gzip-n' into maint
* ft/gitweb-tar-with-gzip-n:
gitweb: supply '-n' to gzip for identical output
-rwxr-xr-x | gitweb/gitweb.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index ee69ea683..f8db40a1c 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -186,7 +186,7 @@ our %known_snapshot_formats = ( 'type' => 'application/x-gzip', 'suffix' => '.tar.gz', 'format' => 'tar', - 'compressor' => ['gzip']}, + 'compressor' => ['gzip', '-n']}, 'tbz2' => { 'display' => 'tar.bz2', |