Ensured exit status is set on failure

This commit is contained in:
Erik C. Thauvin 2024-06-24 20:13:27 -07:00
parent c901065b3a
commit c952b980bb
Signed by: erik
GPG key ID: 776702A6A2DA330E
4 changed files with 16 additions and 16 deletions

View file

@ -17,7 +17,7 @@ To compile the source code located in `src/main/kotlin` and `src/test/kotlin` fr
```java
@BuildCommand(summary = "Compiles the Kotlin project")
public void compile() throws IOException {
public void compile() throws Exception {
new CompileKotlinOperation()
.fromProject(this)
.execute();