File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
import Foundation
4
4
5
- // Log command and arguments
6
- let logMessage = """
7
- \( CommandLine . arguments. joined ( separator: " " ) )
8
- """
9
- try logMessage. appendLineToURL ( fileURL: URL ( fileURLWithPath: NSHomeDirectory ( ) ) . appendingPathComponent ( " rulesxcodeproj_ld.log " ) )
10
-
11
5
extension String {
12
6
func appendLineToURL( fileURL: URL ) throws {
13
7
try ( self + " \n " ) . appendToURL ( fileURL: fileURL)
@@ -158,11 +152,14 @@ func touchSwiftmoduleArtifacts(paths: [PathKey: [URL]]) throws {
158
152
. appendingPathExtension ( " swiftsourceinfo " )
159
153
var swiftinterfacePath = pathNoExtension
160
154
. appendingPathExtension ( " swiftinterface " )
155
+ var abiDescriptorPath = pathNoExtension
156
+ . appendingPathExtension ( " abi.json " )
161
157
162
158
try swiftmodulePath. touch ( )
163
159
try swiftdocPath. touch ( )
164
160
try swiftsourceinfoPath. touch ( )
165
161
try swiftinterfacePath. touch ( )
162
+ try abiDescriptorPath. touch ( )
166
163
}
167
164
}
168
165
You can’t perform that action at this time.
0 commit comments