mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
Increase maxBuffer to fix ENOBUFS error
This commit is contained in:
@@ -62,6 +62,7 @@ function compress(inputDirPath, outputArchivePath) {
|
||||
}
|
||||
compressArguments.push(outputArchivePath, path.basename(inputDirPath));
|
||||
spawnSync(compressCommand, compressArguments, {
|
||||
cwd: path.dirname(inputDirPath)
|
||||
cwd: path.dirname(inputDirPath),
|
||||
maxBuffer: 2024 * 2024
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user