We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d124a69 commit 145f2efCopy full SHA for 145f2ef
2 files changed
rosrust_msg/Cargo.toml
@@ -6,7 +6,7 @@ license = "MIT"
6
name = "rosrust_msg"
7
readme = "../README.md"
8
repository = "https://github.com/adnanademovic/rosrust"
9
-version = "0.1.8"
+version = "0.1.9"
10
build = "build.rs"
11
12
[dependencies]
rosrust_msg/build.rs
@@ -95,6 +95,11 @@ pub fn rerun_if_folder_content_changed(folder: &Path) {
95
return;
96
}
97
if let Some(name) = folder.to_str() {
98
+ if name.starts_with('.') {
99
+ // skip hidden dirs such as .git, .idea, etc
100
+ return;
101
+ }
102
+
103
rerun_if_file_changed(name);
104
105
if let Ok(children) = fs::read_dir(folder) {
0 commit comments