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 22
33import Foundation
44
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-
115extension String {
126 func appendLineToURL( fileURL: URL ) throws {
137 try ( self + " \n " ) . appendToURL ( fileURL: fileURL)
@@ -158,11 +152,14 @@ func touchSwiftmoduleArtifacts(paths: [PathKey: [URL]]) throws {
158152 . appendingPathExtension ( " swiftsourceinfo " )
159153 var swiftinterfacePath = pathNoExtension
160154 . appendingPathExtension ( " swiftinterface " )
155+ var abiDescriptorPath = pathNoExtension
156+ . appendingPathExtension ( " abi.json " )
161157
162158 try swiftmodulePath. touch ( )
163159 try swiftdocPath. touch ( )
164160 try swiftsourceinfoPath. touch ( )
165161 try swiftinterfacePath. touch ( )
162+ try abiDescriptorPath. touch ( )
166163 }
167164 }
168165
You can’t perform that action at this time.
0 commit comments