mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-07 05:05:26 +02:00
Better error report from spawn() fail in extractTo()
This commit is contained in:
parent
941e7d0a03
commit
ea4fb090e2
1 changed files with 3 additions and 1 deletions
|
@ -272,7 +272,9 @@ module.exports = class ArchiveUtil {
|
||||||
try {
|
try {
|
||||||
proc = pty.spawn(archiver[action].cmd, args, this.getPtyOpts(extractPath));
|
proc = pty.spawn(archiver[action].cmd, args, this.getPtyOpts(extractPath));
|
||||||
} catch(e) {
|
} catch(e) {
|
||||||
return cb(e);
|
return cb(Errors.ExternalProcess(
|
||||||
|
`Error spawning archiver process "${archiver[action].cmd}" with args "${args.join(' ')}": ${e.message}`)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.spawnHandler(proc, (haveFileList ? 'Extraction' : 'Decompression'), cb);
|
return this.spawnHandler(proc, (haveFileList ? 'Extraction' : 'Decompression'), cb);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue