diff options
| author | Ross Smyth <rsmyth@electrocraft.com> | 2024-02-26 14:16:04 -0500 |
|---|---|---|
| committer | Ross Smyth <rsmyth@electrocraft.com> | 2024-02-26 14:16:04 -0500 |
| commit | 28c10d6f2235e0d3eef8c86df14edbddb86aff52 (patch) | |
| tree | 043df36960f5d18275e6f29f2d4d7d3fcb826228 | |
| parent | c414c08da3265390965ccc1f51d8da4f6b3375cb (diff) | |
| download | rust-28c10d6f2235e0d3eef8c86df14edbddb86aff52.tar.gz rust-28c10d6f2235e0d3eef8c86df14edbddb86aff52.zip | |
Fix miri.bat not bailing early on error
| -rw-r--r-- | src/tools/miri/miri.bat | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tools/miri/miri.bat b/src/tools/miri/miri.bat index 91e8a6e8f3b..959e54d8844 100644 --- a/src/tools/miri/miri.bat +++ b/src/tools/miri/miri.bat @@ -2,7 +2,10 @@ :: Windows will not execute the bash script, and select this. @echo off set MIRI_SCRIPT_TARGET_DIR=%0\..\miri-script\target -cargo build %CARGO_EXTRA_FLAGS% -q --target-dir %MIRI_SCRIPT_TARGET_DIR% --manifest-path %0\..\miri-script\Cargo.toml + +:: If any other steps are added, the "|| exit /b" must be appended to early +:: return from the script. If not, it will continue execution. +cargo build %CARGO_EXTRA_FLAGS% -q --target-dir %MIRI_SCRIPT_TARGET_DIR% --manifest-path %0\..\miri-script\Cargo.toml || exit /b :: Forwards all arguments to this file to the executable. :: We invoke the binary directly to avoid going through rustup, which would set some extra |
