diff options
| author | Stefan Kreutz <mail@skreutz.com> | 2026-08-22 16:46:00 +0200 |
|---|---|---|
| committer | Stefan Kreutz <mail@skreutz.com> | 2026-08-22 16:46:00 +0200 |
| commit | 7e000316bdd9a7df222c81025d0ff7c099013f90 (patch) | |
| tree | 0703dbec9769d0e0a5b8fead371b7b33a2c48e66 /src/main.rs | |
| parent | 4da2cced672cec8ec7e82c041af5c3f0facd5240 (diff) | |
| download | temp-postgres-7e000316bdd9a7df222c81025d0ff7c099013f90.tar.gz | |
Update Nix flake inputs
Diffstat (limited to 'src/main.rs')
| -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(()) }, |