mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-20 06:07:55 +00:00
Fix exitCode type
This commit is contained in:
parent
233bc705de
commit
c28039a3f2
@ -26,7 +26,7 @@ const standalonePath = path.resolve(__dirname, '..', 'build-bin', balenaExe);
|
|||||||
export interface TestOutput {
|
export interface TestOutput {
|
||||||
err: string[]; // stderr
|
err: string[]; // stderr
|
||||||
out: string[]; // stdout
|
out: string[]; // stdout
|
||||||
exitCode?: number; // process.exitCode
|
exitCode?: string | number; // process.exitCode
|
||||||
}
|
}
|
||||||
|
|
||||||
function matchesNodeEngineVersionWarn(msg: string) {
|
function matchesNodeEngineVersionWarn(msg: string) {
|
||||||
|
Loading…
Reference in New Issue
Block a user