diff options
author | BrainBlasted <brainblastedmods@gmail.com> | 2017-11-04 16:55:04 -0400 |
---|---|---|
committer | BrainBlasted <brainblastedmods@gmail.com> | 2017-11-04 21:05:22 -0400 |
commit | 8e2a756eb89d0bc0a32bcec4276d8518db9cb9e2 (patch) | |
tree | ceb5ec55029091cf9555c98229f9f15b8d3ba50d /modules/mono/editor | |
parent | 3cbcf5c2ddadf1cd630137d6bd438634b8517b00 (diff) |
Added for fallback msbuild.exe.
Fixes #12613
Diffstat (limited to 'modules/mono/editor')
-rw-r--r-- | modules/mono/editor/godotsharp_builds.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/mono/editor/godotsharp_builds.cpp b/modules/mono/editor/godotsharp_builds.cpp index dbe0cc294c..a26f36d64f 100644 --- a/modules/mono/editor/godotsharp_builds.cpp +++ b/modules/mono/editor/godotsharp_builds.cpp @@ -53,6 +53,10 @@ String _find_build_engine_on_unix(const String &p_name) { if (ret.length()) return ret; + String ret_fallback = path_which(p_name + ".exe"); + if (ret_fallback.length()) + return ret_fallback; + const char *locations[] = { #ifdef OSX_ENABLED "/Library/Frameworks/Mono.framework/Versions/Current/bin/", |