feat: hand back the command's exit code

This commit is contained in:
2026-09-08 09:53:38 +00:00
parent 3fa4739451
commit aec7afb274
2 changed files with 15 additions and 1 deletions

View File

@@ -15,7 +15,7 @@ pub fn run(service: &str, rest: &[String]) -> Result<()> {
.args("run --rm")
.arg(service)
.args(rest)
.exec()
.exec_replace()
}
pub fn exec(service: &str, rest: &[String]) -> Result<()> {