Closed wenjie-mo closed 5 months ago
Right, so the problem is here:
We should just throw
in that case, i.e.:
- .catch(error => spinner.warn(error.message))
+ .catch(error => {
+ throw error
+ })
I'll try to release a fix this week, thanks for bringing it up 👍
Thank you so much Cosmin, appreciate the help!
Hello,
I find that the exit code will be set to zero even if there is an compilation failure across templates:
Log:
When I echo the exit code, it is zero.
I followed the #986, however the error code is always zero regardless of which
config.build.fail
I choose (verbose, silent or unset). I would like Maizzle to fail so the CI can detect it.Thanks so much for the help!