File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -57,11 +57,11 @@ public final class SKSwiftPMTestWorkspace {
57
57
_ = try ? fm. removeItem ( at: tmpDir)
58
58
59
59
buildDir = tmpDir. appendingPathComponent ( " build " , isDirectory: true )
60
- try fm. tibs_createDirectoryWithIntermediates ( at: buildDir)
60
+ try fm. createDirectory ( at: buildDir, withIntermediateDirectories : true , attributes : nil )
61
61
let sourceDir = tmpDir. appendingPathComponent ( " src " , isDirectory: true )
62
62
try fm. copyItem ( at: projectDir, to: sourceDir)
63
63
let databaseDir = tmpDir. appendingPathComponent ( " db " , isDirectory: true )
64
- try fm. tibs_createDirectoryWithIntermediates ( at: databaseDir)
64
+ try fm. createDirectory ( at: databaseDir, withIntermediateDirectories : true , attributes : nil )
65
65
66
66
self . sources = try TestSources ( rootDirectory: sourceDir)
67
67
@@ -76,7 +76,7 @@ public final class SKSwiftPMTestWorkspace {
76
76
77
77
let libIndexStore = try IndexStoreLibrary ( dylibPath: toolchain. libIndexStore!. pathString)
78
78
79
- try fm. tibs_createDirectoryWithIntermediates ( at : swiftpm. indexStorePath!. asURL )
79
+ try fm. createDirectory ( atPath : swiftpm. indexStorePath!. pathString , withIntermediateDirectories : true )
80
80
81
81
let indexDelegate = SourceKitIndexDelegate ( )
82
82
You can’t perform that action at this time.
0 commit comments