Skip to content

Commit

Permalink
fix: fix exit code on compile --strict errors (#825)
Browse files Browse the repository at this point in the history
  • Loading branch information
semoal committed Nov 5, 2020
1 parent 296b6a1 commit 69a80e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/lingui-compile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function command(config, options) {
console.error(chalk.red(`Missing ${missing.length} translation(s)`))
}
console.error()
process.exit()
process.exit(1)
}
}

Expand Down

1 comment on commit 69a80e2

@vercel
Copy link

@vercel vercel bot commented on 69a80e2 Nov 5, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.