allow undefined GODOT_DEBUG_MSBUILD environment variable
(cherry picked from commit 17516822f9
)
This commit is contained in:
parent
d4a226500b
commit
e86ef017f2
1 changed files with 1 additions and 1 deletions
|
@ -234,7 +234,7 @@ namespace GodotSharpTools.Build
|
||||||
|
|
||||||
private static bool IsDebugMSBuildRequested()
|
private static bool IsDebugMSBuildRequested()
|
||||||
{
|
{
|
||||||
return Environment.GetEnvironmentVariable("GODOT_DEBUG_MSBUILD").Trim() == "1";
|
return Environment.GetEnvironmentVariable("GODOT_DEBUG_MSBUILD")?.Trim() == "1";
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
|
|
Loading…
Reference in a new issue