mirror of
https://github.com/cdr/code-server.git
synced 2025-12-06 08:27:17 +01:00
Sometimes an exec has no callback
How lonely.
This commit is contained in:
parent
20f5d8eeed
commit
a0c443d8d3
1 changed files with 8 additions and 6 deletions
|
|
@ -32,12 +32,14 @@ export class CP {
|
|||
if (typeof options === "function") {
|
||||
callback = options;
|
||||
}
|
||||
// @ts-ignore not sure how to make this work.
|
||||
callback(
|
||||
error,
|
||||
useBuffer(options) ? Buffer.from(stdout) : stdout,
|
||||
useBuffer(options) ? Buffer.from(stderr) : stderr,
|
||||
);
|
||||
if (callback) {
|
||||
// @ts-ignore not sure how to make this work.
|
||||
callback(
|
||||
error,
|
||||
useBuffer(options) ? Buffer.from(stdout) : stdout,
|
||||
useBuffer(options) ? Buffer.from(stderr) : stderr,
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
// @ts-ignore TODO: not fully implemented
|
||||
|
|
|
|||
Loading…
Reference in a new issue