Преглед изворни кода

Fix issue causing `Export all` to fail.

Fredia Huya-Kouadio пре 4 година
родитељ
комит
e87ee41fd4
1 измењених фајлова са 4 додато и 0 уклоњено
  1. 4 0
      platform/android/export/export.cpp

+ 4 - 0
platform/android/export/export.cpp

@@ -2787,6 +2787,10 @@ public:
 
 			String export_filename = p_path.get_file();
 			String export_path = p_path.get_base_dir();
+			if (export_path.is_rel_path()) {
+				export_path = OS::get_singleton()->get_resource_dir().plus_file(export_path);
+			}
+			export_path = ProjectSettings::get_singleton()->globalize_path(export_path).simplify_path();
 
 			copy_args.push_back("-Pexport_path=file:" + export_path);
 			copy_args.push_back("-Pexport_filename=" + export_filename);