Skip to content

Commit 03d868c

Browse files
Merge pull request #199 from conveyal/dev
v3.9.2
2 parents b41abb0 + 3198157 commit 03d868c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bin/mastarm-flow

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const flow = require('flow-bin')
66
const args = process.argv.slice(2)
77
if (args.length === 0) args.push('check')
88

9-
execFile(flow, args, (_, stdout) => {
9+
execFile(flow, args, (error, stdout) => {
1010
console.log(stdout)
11+
if (error) process.exit(1)
1112
})

0 commit comments

Comments
 (0)