Skip to content

Commit 1cb704f

Browse files
committed
fix: fail the build if with-topics failed
1 parent 081f2d2 commit 1cb704f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/actions/packaging.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ pub fn package_build<S: AsRef<str>, K: Clone + ExactSizeIterator<Item = S>>(
344344
cmd.push("--opt-in");
345345
cmd.push(topic);
346346
}
347-
let _ = run_in_container(instance, &cmd);
347+
run_in_container(instance, &cmd)?;
348348
}
349349

350350
if !conf.local_repo {

0 commit comments

Comments
 (0)