Ignore hidden test resource files
This commit is contained in:
Родитель
0ce226f4b1
Коммит
1c97dece47
4
build.rs
4
build.rs
|
@ -144,6 +144,10 @@ use serde_json::Value;
|
|||
let mut paths: Vec<_> = fs::read_dir(test_cases)
|
||||
.unwrap()
|
||||
.map(|e| e.unwrap().path())
|
||||
.filter(|e| match e.file_name() {
|
||||
Some(os_str) => !os_str.to_str().unwrap().starts_with("."),
|
||||
None => false
|
||||
})
|
||||
.collect();
|
||||
paths.sort();
|
||||
for path in paths {
|
||||
|
|
Загрузка…
Ссылка в новой задаче