Skip to content

Commit

Permalink
Trim conan path (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
AbrilRBS authored Nov 19, 2024
1 parent 864ffa7 commit 3c81eec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ConanOptionsPage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public string ConanExecutablePath
get => _conanExecutablePath;
set
{
_conanExecutablePath = value;
_conanExecutablePath = value.Trim();
GlobalSettings.ConanExecutablePath = value;

if (value != "conan")
Expand Down
2 changes: 1 addition & 1 deletion GlobalSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public static string ConanExecutablePath
}
set
{
_conanExecutablePath = value;
_conanExecutablePath = value.Trim();
}

}
Expand Down

0 comments on commit 3c81eec

Please sign in to comment.