aboutsummaryrefslogtreecommitdiff
path: root/.run/src/lib.rs
diff options
context:
space:
mode:
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);