Skip to content

Commit 69a80e2

Browse files
authored
fix: fix exit code on compile --strict errors (#825)
1 parent 296b6a1 commit 69a80e2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/cli/src/lingui-compile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function command(config, options) {
7878
console.error(chalk.red(`Missing ${missing.length} translation(s)`))
7979
}
8080
console.error()
81-
process.exit()
81+
process.exit(1)
8282
}
8383
}
8484

0 commit comments

Comments
 (0)