Skip to content

Commit 20de9a7

Browse files
committed
4
1 parent c404fb2 commit 20de9a7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

libc-test/build.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,10 @@ fn main() {
165165
do_semver();
166166
}
167167

168+
// FIXME(clippy): removing `replace` somehow fails the `Test tier1 (x86_64-pc-windows-msvc, windows-2022)` CI job
169+
#[allow(clippy::only_used_in_recursion)]
168170
fn copy_dir_hotfix(src: &Path, dst: &Path, regex: &regex::bytes::Regex, replace: &[u8]) {
169-
std::fs::create_dir(&dst).unwrap();
171+
std::fs::create_dir(dst).unwrap();
170172
for entry in src.read_dir().unwrap() {
171173
let entry = entry.unwrap();
172174
let src_path = entry.path();

0 commit comments

Comments
 (0)