Skip to content

Commit b57aaa3

Browse files
committed
do not error on compile failure
1 parent 19b119d commit b57aaa3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/java/src/maven.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ impl JavaPlugin for MavenPlugin {
183183
.arg("compile")
184184
.arg("test-compile")
185185
})
186-
.output_checked()?;
186+
.output()?;
187187

188188
Ok(CompileResult {
189189
status_code: output.status,

0 commit comments

Comments
 (0)