diff options
| author | Kelly Thomas | 2018-06-06 22:31:54 +0800 |
|---|---|---|
| committer | Kelly Thomas | 2018-06-06 22:31:54 +0800 |
| commit | 17516822f9424c6a94402339ee466f9d37264482 (patch) | |
| tree | 0c4233be103e7fd61a9a8e5b570ab4760a19c808 /modules | |
| parent | 07d4cd7f6d833332b1bc3d2025d222778624ce17 (diff) | |
| download | godot-17516822f9424c6a94402339ee466f9d37264482.tar.gz godot-17516822f9424c6a94402339ee466f9d37264482.tar.zst godot-17516822f9424c6a94402339ee466f9d37264482.zip | |
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/mono/editor/GodotSharpTools/Build/BuildSystem.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/GodotSharpTools/Build/BuildSystem.cs b/modules/mono/editor/GodotSharpTools/Build/BuildSystem.cs index a5dd37b5d..16beacb45 100644 --- a/modules/mono/editor/GodotSharpTools/Build/BuildSystem.cs +++ b/modules/mono/editor/GodotSharpTools/Build/BuildSystem.cs @@ -234,7 +234,7 @@ namespace GodotSharpTools.Build private static bool IsDebugMSBuildRequested() { - return Environment.GetEnvironmentVariable("GODOT_DEBUG_MSBUILD").Trim() == "1"; + return Environment.GetEnvironmentVariable("GODOT_DEBUG_MSBUILD")?.Trim() == "1"; } public void Dispose() |
