diff options
| author | Jubilee Young <workingjubilee@gmail.com> | 2024-04-21 13:32:46 -0700 |
|---|---|---|
| committer | Jubilee Young <workingjubilee@gmail.com> | 2024-04-21 13:32:46 -0700 |
| commit | 2042616134048f5226a97e405cb8357cde355e36 (patch) | |
| tree | d0f605a5667e0cbceb206e7f39aae5798379eef4 | |
| parent | a2fa934927a3d39860572f722bbe5f3cb691cf19 (diff) | |
| download | rust-2042616134048f5226a97e405cb8357cde355e36.tar.gz rust-2042616134048f5226a97e405cb8357cde355e36.zip | |
bootstrap: Describe build_steps::run
| -rw-r--r-- | src/bootstrap/src/core/build_steps/run.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bootstrap/src/core/build_steps/run.rs b/src/bootstrap/src/core/build_steps/run.rs index 7028bffea54..0a428ec5ca0 100644 --- a/src/bootstrap/src/core/build_steps/run.rs +++ b/src/bootstrap/src/core/build_steps/run.rs @@ -1,3 +1,8 @@ +//! Build-and-run steps for in-repo tools +//! +//! A bit of a hodge-podge as e.g. if a tool's a test fixture it should be in `build_steps::test`. +//! If it can be reached from `./x.py run` it can go here. + use std::path::PathBuf; use std::process::Command; |
