We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59e6336 commit 2e3ab56Copy full SHA for 2e3ab56
UnoCheck/Checkups/XCodeCheckup.cs
@@ -94,7 +94,9 @@ public override Task<DiagnosticResult> Examine(SharedState history)
94
95
// If we do have a sdk version, it means the tools are installed but the iOS SDK runtime is missing
96
Spectre.Console.AnsiConsole.MarkupLine($"Installing the missing iOS SDK runtime version {sdkVersion}...");
97
- var tempPath = Path.GetTempPath();
+
98
+ var tempPath = Path.Combine(Path.GetTempPath(), $"Uno.Check.iOS-{Guid.NewGuid()}");
99
+ Directory.CreateDirectory(tempPath);
100
101
return Task.FromResult(new DiagnosticResult(
102
Status.Error,
0 commit comments