Переглянути джерело

Merge pull request #12535 from neikeq/wtf···

Fix msbuild hint paths returning only the directory
Ignacio Etcheverry 7 роки тому
батько
коміт
157fa55e34
1 змінених файлів з 3 додано та 3 видалено
  1. 3 3
      modules/mono/editor/godotsharp_builds.cpp

+ 3 - 3
modules/mono/editor/godotsharp_builds.cpp

@@ -61,10 +61,10 @@ String _find_build_engine_on_unix(const String &p_name) {
 	};
 
 	for (int i = 0; i < sizeof(locations) / sizeof(const char *); i++) {
-		String location = locations[i];
+		String hint_path = locations[i] + p_name;
 
-		if (FileAccess::exists(location + p_name)) {
-			return location;
+		if (FileAccess::exists(hint_path)) {
+			return hint_path;
 		}
 	}