Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 7654d76

Browse files
authored
swift-doc: load FoundationNetworking whenever possible (#265)
Change the condition from being a platform specific check to whether the module is available. This module is meant to be used on all non-Darwin platforms. This repairs fetching the CSS content when using swift-doc on a Windows host.
1 parent 0c7ae14 commit 7654d76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/swift-doc/Subcommands/Generate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import SwiftMarkup
55
import SwiftSemantics
66
import struct SwiftSemantics.Protocol
77

8-
#if os(Linux)
8+
#if canImport(FoundationNetworking)
99
import FoundationNetworking
1010
#endif
1111

0 commit comments

Comments
 (0)