From da5a750965dbec5a2c003faa8fb9f1dd110ccce8 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 18 May 2026 17:25:29 +0800 Subject: Implement REPL execution with hooks and argument splitting --- dev_tools/src/bin/ci.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dev_tools/src/bin/ci.rs') diff --git a/dev_tools/src/bin/ci.rs b/dev_tools/src/bin/ci.rs index f2676e0..a5f581d 100644 --- a/dev_tools/src/bin/ci.rs +++ b/dev_tools/src/bin/ci.rs @@ -56,7 +56,7 @@ fn build_all() -> Result<(), i32> { for cargo_toml in cargo_tomls { println_cargo_style!("Build: {}", cargo_toml.to_string_lossy()); run_cmd!( - "cargo check --manifest-path {}", + "cargo build --manifest-path {}", cargo_toml.to_string_lossy() )?; } -- cgit