Browse code

Merge pull request #3535 from plietar/3457-git-build

Don't compress the archive made from git's output.

Michael Crosby authored on 2014/01/10 03:32:28
Showing 2 changed files
... ...
@@ -148,6 +148,7 @@ odk- <github@odkurzacz.org>
148 148
 Pascal Borreli <pascal@borreli.com>
149 149
 Paul Bowsher <pbowsher@globalpersonals.co.uk>
150 150
 Paul Hammond <paul@paulhammond.org>
151
+Paul LiƩtar <paul@lietar.net>
151 152
 Paul Nasrat <pnasrat@gmail.com>
152 153
 Phil Spitler <pspitler@gmail.com>
153 154
 Piotr Bogdan <ppbogdan@gmail.com>
... ...
@@ -929,7 +929,7 @@ func postBuild(srv *Server, version float64, w http.ResponseWriter, r *http.Requ
929 929
 			return fmt.Errorf("Error trying to use git: %s (%s)", err, output)
930 930
 		}
931 931
 
932
-		c, err := archive.Tar(root, archive.Bzip2)
932
+		c, err := archive.Tar(root, archive.Uncompressed)
933 933
 		if err != nil {
934 934
 			return err
935 935
 		}