File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Tests/SwiftSDKGeneratorTests Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,8 @@ extension FileManager {
32
32
// https://github.com/swiftlang/swift-corelibs-foundation/blob/21b3196b33a64d53a0989881fc9a486227b4a316/Sources/Foundation/FileManager.swift#L152
33
33
var logger = logger
34
34
35
- let temporaryDirectory = self . temporaryDirectory. appendingPathComponent ( UUID ( ) . uuidString)
35
+ // Include spaces in the temporary directory name to help detect Shell.run() calls which do not quote path names appropriately
36
+ let temporaryDirectory = self . temporaryDirectory. appendingPathComponent ( " \( UUID ( ) . uuidString) with spaces " )
36
37
logger [ metadataKey: " temporaryDirectory " ] = " \( temporaryDirectory. path) "
37
38
38
39
try createDirectory ( at: temporaryDirectory, withIntermediateDirectories: false )
You can’t perform that action at this time.
0 commit comments