allow windows reserved names in CI

This commit is contained in:
MarcoIeni 2025-02-03 17:51:51 +01:00
parent 0e3d73849a
commit 54f97e28fd
No known key found for this signature in database

View File

@ -373,11 +373,6 @@ pub fn sysroot() -> String {
pub fn windows_reserved_names_are_allowed() -> bool {
use cargo_util::is_ci;
// Ensure tests still run in CI until we need to migrate.
if is_ci() {
return false;
}
use std::ffi::OsStr;
use std::os::windows::ffi::OsStrExt;
use std::ptr;