File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Sources/SwiftSDKGenerator/Generator Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -163,12 +163,12 @@ public actor SwiftSDKGenerator {
163
163
164
164
func rsync( from source: FilePath , to destination: FilePath ) async throws {
165
165
try self . createDirectoryIfNeeded ( at: destination)
166
- try await Shell . run ( " rsync -a \ ( source) \ ( destination) " , shouldLogCommands: self . isVerbose)
166
+ try await Shell . run ( # "rsync -a " \# ( source) " " \# ( destination) ""# , shouldLogCommands: self . isVerbose)
167
167
}
168
168
169
169
func rsyncContents( from source: FilePath , to destination: FilePath ) async throws {
170
170
try self . createDirectoryIfNeeded ( at: destination)
171
- try await Shell . run ( " rsync -a \ ( source) / \ ( destination) " , shouldLogCommands: self . isVerbose)
171
+ try await Shell . run ( # "rsync -a " \# ( source) /" " \# ( destination) ""# , shouldLogCommands: self . isVerbose)
172
172
}
173
173
174
174
func createSymlink( at source: FilePath , pointingTo destination: FilePath ) throws {
@@ -254,7 +254,7 @@ public actor SwiftSDKGenerator {
254
254
stripComponentsOption = " "
255
255
}
256
256
try await Shell . run (
257
- #"tar -C " \#( directoryPath) " \#( stripComponentsOption) -xf \#( file) "# ,
257
+ #"tar -C " \#( directoryPath) " \#( stripComponentsOption) -xf " \#( file) " "#,
258
258
shouldLogCommands: self . isVerbose
259
259
)
260
260
}
You can’t perform that action at this time.
0 commit comments