This repository was archived by the owner on Jun 1, 2023. It is now read-only.
File tree 1 file changed +2
-3
lines changed
Sources/swift-doc/Subcommands
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,6 @@ extension SwiftDoc {
119
119
if case . html = format {
120
120
let cssData = try fetchRemoteCSS ( )
121
121
let jsData = try fetchRemoteJS ( )
122
- // print("jsData \(jsData.strin)")
123
122
let cssURL = outputDirectoryURL. appendingPathComponent ( " all.css " )
124
123
try writeFile ( cssData, to: cssURL)
125
124
let jsURL = outputDirectoryURL. appendingPathComponent ( " all.js " )
@@ -134,11 +133,11 @@ extension SwiftDoc {
134
133
}
135
134
136
135
func fetchRemoteCSS( ) throws -> Data {
137
- let url = URL ( string: " https://raw.githubusercontent.com/literalpie/swift-doc/9fe829b46564c9a41eac95a47918c24dca7a00a1 /Resources/all.min.css " ) !
136
+ let url = URL ( string: " https://raw.githubusercontent.com/literalpie/swift-doc/5165f782d33d437f7bccf3c2fa5f89b039134f73 /Resources/all.min.css " ) !
138
137
return try Data ( contentsOf: url)
139
138
}
140
139
141
140
func fetchRemoteJS( ) throws -> Data {
142
- let url = URL ( string: " https://raw.githubusercontent.com/literalpie/swift-doc/9fe829b46564c9a41eac95a47918c24dca7a00a1 /Resources/all.js " ) !
141
+ let url = URL ( string: " https://raw.githubusercontent.com/literalpie/swift-doc/5165f782d33d437f7bccf3c2fa5f89b039134f73 /Resources/all.js " ) !
143
142
return try Data ( contentsOf: url)
144
143
}
You can’t perform that action at this time.
0 commit comments