diff --git a/racket/collects/file/tar.rkt b/racket/collects/file/tar.rkt index ff41e12e51..deddf52067 100644 --- a/racket/collects/file/tar.rkt +++ b/racket/collects/file/tar.rkt @@ -155,7 +155,7 @@ (when (null? paths) (error 'tar-gzip "no paths specified")) (with-output-to-file tgz-file (lambda () - (let-values ([(i o) (make-pipe)]) + (let-values ([(i o) (make-pipe (* 1024 1024 32))]) (thread (lambda () (tar->output (pathlist-closure paths #:follow-links? #f) o #:path-prefix prefix)