pull/310/head
Frostebite 2021-12-26 02:22:12 +00:00
parent de69691a3e
commit 4a97d4acc8
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -507,7 +507,7 @@ class RemoteClientSystem {
}); });
child.on('close', function (code) { child.on('close', function (code) {
if (code !== 0) { if (code !== 0) {
throw new Error(output); throw new Error(`[FAIL][${code}] ${output}`);
} }
promise(output); promise(output);
}); });

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -19,7 +19,7 @@ export class RemoteClientSystem {
}); });
child.on('close', function (code) { child.on('close', function (code) {
if (code !== 0) { if (code !== 0) {
throw new Error(output); throw new Error(`[FAIL][${code}] ${output}`);
} }
promise(output); promise(output);
}); });