test
parent
de69691a3e
commit
4a97d4acc8
|
|
@ -507,7 +507,7 @@ class RemoteClientSystem {
|
|||
});
|
||||
child.on('close', function (code) {
|
||||
if (code !== 0) {
|
||||
throw new Error(output);
|
||||
throw new Error(`[FAIL][${code}] ${output}`);
|
||||
}
|
||||
promise(output);
|
||||
});
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -19,7 +19,7 @@ export class RemoteClientSystem {
|
|||
});
|
||||
child.on('close', function (code) {
|
||||
if (code !== 0) {
|
||||
throw new Error(output);
|
||||
throw new Error(`[FAIL][${code}] ${output}`);
|
||||
}
|
||||
promise(output);
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue