mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-06-16 06:48:08 +00:00
Fix deploy action on node 6
Downgrade @types/node to version 6 as we support node6 Change-type: patch
This commit is contained in:
@ -283,5 +283,7 @@ export function exitWithExpectedError(message: string | Error): never {
|
||||
}
|
||||
|
||||
printErrorMessage(message);
|
||||
return process.exit(1);
|
||||
process.exit(1);
|
||||
// The following throw is to make tsc happy about the `never` return type.
|
||||
throw new Error('exit');
|
||||
}
|
||||
|
Reference in New Issue
Block a user