aboutsummaryrefslogtreecommitdiff
path: root/.run/src/bin/ci.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-07-10 17:00:15 +0800
committer魏曹先生 <1992414357@qq.com>2026-07-10 17:04:26 +0800
commit48116f90e5b405ceada30db5420dcbef94b10518 (patch)
tree861146bdf76966f52d1b875440d467ae5822fe98 /.run/src/bin/ci.rs
parent271c9c15ebf104b7d698b53d40548a16d246456d (diff)
fix: update manifest path references from dev_tools to .rununreleased
Diffstat (limited to '.run/src/bin/ci.rs')
-rw-r--r--.run/src/bin/ci.rs14
1 files changed, 7 insertions, 7 deletions
diff --git a/.run/src/bin/ci.rs b/.run/src/bin/ci.rs
index f8aed79..2527ece 100644
--- a/.run/src/bin/ci.rs
+++ b/.run/src/bin/ci.rs
@@ -139,12 +139,12 @@ fn ci(test_docs: bool, test_codes: bool, run_all: bool) -> Result<(), i32> {
}
fn test_examples() -> Result<(), i32> {
- run_cmd!("cargo run --manifest-path dev_tools/Cargo.toml --color always --bin test-examples")
+ run_cmd!("cargo run --manifest-path .run/Cargo.toml --color always --bin test-examples")
}
fn test_docs_code_blocks() -> Result<(), i32> {
run_cmd!(
- "cargo run --manifest-path dev_tools/Cargo.toml --color always --bin test-all-markdown-code"
+ "cargo run --manifest-path .run/Cargo.toml --color always --bin test-all-markdown-code"
)
}
@@ -214,11 +214,11 @@ fn test_all() -> Result<(), i32> {
fn docs_refresh() -> Result<(), i32> {
println_cargo_style!("Refresh: document at `./docs/`");
- run_cmd!("cargo run --manifest-path dev_tools/Cargo.toml --bin docs-code-box-fix")?;
- run_cmd!("cargo run --manifest-path dev_tools/Cargo.toml --bin docsify-sidebar-gen")?;
- run_cmd!("cargo run --manifest-path dev_tools/Cargo.toml --bin refresh-docs")?;
- run_cmd!("cargo run --manifest-path dev_tools/Cargo.toml --bin refresh-feature-mod")?;
- run_cmd!("cargo run --manifest-path dev_tools/Cargo.toml --bin sync-examples")?;
+ run_cmd!("cargo run --manifest-path .run/Cargo.toml --bin docs-code-box-fix")?;
+ run_cmd!("cargo run --manifest-path .run/Cargo.toml --bin docsify-sidebar-gen")?;
+ run_cmd!("cargo run --manifest-path .run/Cargo.toml --bin refresh-docs")?;
+ run_cmd!("cargo run --manifest-path .run/Cargo.toml --bin refresh-feature-mod")?;
+ run_cmd!("cargo run --manifest-path .run/Cargo.toml --bin sync-examples")?;
run_cmd!("cargo fmt")?;
Ok(())