mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge branch 'master' into master-redesign
This commit is contained in:
commit
a2bb89b579
1 changed files with 4 additions and 0 deletions
|
@ -9,6 +9,10 @@ module.exports = ArchiveManager =
|
|||
|
||||
unzip = child.spawn("unzip", [source, "-d", destination])
|
||||
|
||||
# don't remove this line, some zips need
|
||||
# us to listen on this for some unknow reason
|
||||
unzip.stdout.on "data", (d)->
|
||||
|
||||
error = null
|
||||
unzip.stderr.on "data", (chunk) ->
|
||||
error ||= ""
|
||||
|
|
Loading…
Reference in a new issue