0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-01 12:16:11 -05:00

Revert "Fix: Address permissions issue for UNC paths on Windows"

This reverts commit 033370da71.
This commit is contained in:
yazan-abdalrahman 2024-08-21 17:05:33 +03:00
parent 033370da71
commit 53395acb26

View file

@ -1823,7 +1823,6 @@ impl PermissionsContainer {
// Check if the path is a UNC path (e.g., \\Server\Share\Folder)
// UNC paths typically contain "\\" at the start or somewhere in the middle
#[cfg(windows)]
if s.windows(2).any(|window| window == b"\\\\") {
return true;
}