(err: Error)
| 863 | }; |
| 864 | |
| 865 | const onError = (err: Error) => { |
| 866 | console.warn( |
| 867 | `Failed to start '${sandbox} pull ${image}' command: ${err.message}`, |
| 868 | ); |
| 869 | cleanup(); |
| 870 | resolve(false); |
| 871 | }; |
| 872 | |
| 873 | const onClose = (code: number | null) => { |
| 874 | if (code === 0) { |