Skip to content

Commit 84298cf

Browse files
committed
Explain cargo run instead of cargo build
1 parent 57fa8fc commit 84298cf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ui_test/src/dependencies.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ pub fn build_dependencies(config: &Config) -> Result<Dependencies> {
2828
};
2929
let mut build = Command::new(program);
3030
build.args(args);
31+
// HACK: we're using `cargo run` (or `cargo miri run`), because the latter does not
32+
// support `cargo miri build` yet.
3133
build.arg("run");
3234

3335
// Reusable closure for setting up the environment both for artifact generation and `cargo_metadata`

0 commit comments

Comments
 (0)