Skip to content

Commit b984e1f

Browse files
committed
Merged PR 716642: Fix selection of OS-specific FileSystemExtensions
Blocking CoW activity for Windows.
1 parent 4bf6cc5 commit b984e1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Public/Src/Utilities/Native.Extensions/FileUtilitiesExtensions.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ public static class FileUtilitiesExtensions
2323
/// as the vanilla BuildXL build for Windows and skip Unix implementations completely
2424
/// </remarks>
2525
private static readonly IFileSystemExtensions s_fileSystemExtensions = OperatingSystemHelper.IsUnixOS
26-
? new FileSystemExtensionsWin()
27-
: new FileSystemExtensionsUnix();
26+
? new FileSystemExtensionsUnix()
27+
: new FileSystemExtensionsWin();
2828

2929
/// <see cref="IFileSystemExtensions.IsCopyOnWriteSupportedByEnlistmentVolume"/>
3030
public static bool IsCopyOnWriteSupportedByEnlistmentVolume

0 commit comments

Comments
 (0)