mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
Fix type check issues
This commit is contained in:
parent
3d98bb5084
commit
a2fb94d0f0
8 changed files with 60 additions and 4 deletions
|
|
@ -16,4 +16,4 @@ setEcoSystem(ECOSYSTEM_PY);
|
|||
initializePackageManager(packageManagerName);
|
||||
const exitCode = await main(argv);
|
||||
|
||||
process.exit(exitCode);
|
||||
process.exit(typeof exitCode === 'number' ? exitCode : 1);
|
||||
|
|
|
|||
|
|
@ -16,4 +16,4 @@ setEcoSystem(ECOSYSTEM_PY);
|
|||
initializePackageManager(packageManagerName);
|
||||
const exitCode = await main(argv);
|
||||
|
||||
process.exit(exitCode);
|
||||
process.exit(typeof exitCode === 'number' ? exitCode : 1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue