Skip to content

Commit

Permalink
Fix string trimming in AppleSdk.cs (#112090)
Browse files Browse the repository at this point in the history
  • Loading branch information
akoeplinger authored Feb 3, 2025
1 parent 4fd9470 commit a7c1868
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tasks/MobileBuildTasks/Apple/AppleSdk.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ private string GetXCodeDevRoot()
debugMessageImportance: MessageImportance.Low,
label: "xcode-select");

output.Trim();
output = output.Trim();
if (Directory.Exists(output))
{
if (output.EndsWith("/Contents/Developer", StringComparison.Ordinal))
Expand Down

0 comments on commit a7c1868

Please sign in to comment.