aboutsummaryrefslogtreecommitdiff
path: root/.run/src/lib.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/lib.rs
parent271c9c15ebf104b7d698b53d40548a16d246456d (diff)
fix: update manifest path references from dev_tools to .rununreleased
Diffstat (limited to '.run/src/lib.rs')
-rw-r--r--.run/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/.run/src/lib.rs b/.run/src/lib.rs
index d38a156..232afb3 100644
--- a/.run/src/lib.rs
+++ b/.run/src/lib.rs
@@ -316,8 +316,8 @@ pub fn cargo_tomls() -> Vec<std::path::PathBuf> {
for entry in entries.flatten() {
let path = entry.path();
if path.is_dir() {
- // Skip the dev_tools directory
- if path.file_name().and_then(|n| n.to_str()) == Some("dev_tools") {
+ // Skip the .run directory
+ if path.file_name().and_then(|n| n.to_str()) == Some(".run") {
continue;
}
dirs.push(path);