We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 315d230 + d804a9a commit d2054e7Copy full SHA for d2054e7
Sources/Diagnose/DiagnoseCommand.swift
@@ -369,7 +369,9 @@ public struct DiagnoseCommand: AsyncParsableCommand {
369
if let bundleOutputPath = self.bundleOutputPath {
370
URL(fileURLWithPath: bundleOutputPath)
371
} else {
372
- FileManager.default.temporaryDirectory.appendingPathComponent("sourcekit-lsp-diagnose-\(date)")
+ FileManager.default.temporaryDirectory
373
+ .appendingPathComponent("sourcekit-lsp-diagnose")
374
+ .appendingPathComponent("sourcekit-lsp-diagnose-\(date)")
375
}
376
try FileManager.default.createDirectory(at: bundlePath, withIntermediateDirectories: true)
377
0 commit comments