diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 9a139ad..60417ec 100644 --- a/src/main.rs +++ b/src/main.rs @@ -431,7 +431,7 @@ async fn serve( } let status = r.context("failed to wait for wrapped command")?; if !status.success() { - return Err(WrappedCommandError(status))?; + Err(WrappedCommandError(status))?; } Ok(()) }, |