Skip to content

Commit 74520d0

Browse files
authored
Utility: disable DirectoryMonitor on Windows temporarily (#606)
This temporarily disables the functionality on Windows to match the Linux port. We should be able to reimplement this functionality as already done in clang and swift-tools-support-core on Windows.
1 parent fee9031 commit 74520d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SwiftDocCUtilities/Utility/DirectoryMonitor.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import Foundation
1212
import SwiftDocC
1313

14-
#if !os(Linux) && !os(Android)
14+
#if !os(Linux) && !os(Android) && !os(Windows)
1515
import Darwin
1616

1717
/// A throttle object to filter events that come too fast.

0 commit comments

Comments
 (0)