aboutsummaryrefslogtreecommitdiff
path: root/run-tools.ps1
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-04-15 12:09:19 +0800
committer魏曹先生 <1992414357@qq.com>2026-04-15 12:09:19 +0800
commit9f3ceb1419f5e72fe684ae6e64568e3a14c6013c (patch)
tree8a5110380f255acc889dcea444e81aff38b12cdb /run-tools.ps1
parent003670b272709fa73d639902c4a04348b3bc38bb (diff)
Rename refresh-examples to refresh-docs and add quiet flag
Diffstat (limited to 'run-tools.ps1')
-rw-r--r--run-tools.ps12
1 files changed, 1 insertions, 1 deletions
diff --git a/run-tools.ps1 b/run-tools.ps1
index 43e39d8..5aaa785 100644
--- a/run-tools.ps1
+++ b/run-tools.ps1
@@ -32,7 +32,7 @@ $rust_file = "dev_tools/src/bin/${target_name}.rs"
if (Test-Path $script_file) {
& $script_file
} elseif (Test-Path $rust_file) {
- cargo run --manifest-path dev_tools/Cargo.toml --bin $target_name
+ cargo run --manifest-path dev_tools/Cargo.toml --bin $target_name --quiet
} else {
Write-Host "Error: target '$target_name' does not exist as a script or Rust program"
exit 1