aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sol-compiler/src/cli.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-05-08 22:02:04 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-05-10 23:47:38 +0800
commit75d24dea0e10d098d3833488a420498410c22991 (patch)
treee079561d372d5480db59f798ebe4d853bd9ab692 /packages/sol-compiler/src/cli.ts
parenta6f72de09d7b2c9738b78d2097baa9906838fbe9 (diff)
downloaddexon-0x-contracts-75d24dea0e10d098d3833488a420498410c22991.tar
dexon-0x-contracts-75d24dea0e10d098d3833488a420498410c22991.tar.gz
dexon-0x-contracts-75d24dea0e10d098d3833488a420498410c22991.tar.bz2
dexon-0x-contracts-75d24dea0e10d098d3833488a420498410c22991.tar.lz
dexon-0x-contracts-75d24dea0e10d098d3833488a420498410c22991.tar.xz
dexon-0x-contracts-75d24dea0e10d098d3833488a420498410c22991.tar.zst
dexon-0x-contracts-75d24dea0e10d098d3833488a420498410c22991.zip
Fix linter issues
Diffstat (limited to 'packages/sol-compiler/src/cli.ts')
-rw-r--r--packages/sol-compiler/src/cli.ts7
1 files changed, 5 insertions, 2 deletions
diff --git a/packages/sol-compiler/src/cli.ts b/packages/sol-compiler/src/cli.ts
index 2412b8d34..90b4949bc 100644
--- a/packages/sol-compiler/src/cli.ts
+++ b/packages/sol-compiler/src/cli.ts
@@ -1,7 +1,7 @@
#!/usr/bin/env node
// We need the above pragma since this script will be run as a command-line tool.
-import { BigNumber } from '@0xproject/utils';
+import { BigNumber, logUtils } from '@0xproject/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper';
import * as _ from 'lodash';
import * as path from 'path';
@@ -38,4 +38,7 @@ const SEPARATOR = ',';
};
const compiler = new Compiler(opts);
await compiler.compileAsync();
-})();
+})().catch(err => {
+ logUtils.log(err);
+ process.exit(1);
+});