Fix issue causing Export all to fail.
This commit is contained in:
parent
3c1a1a760e
commit
3de720c11d
1 changed files with 4 additions and 0 deletions
|
|
@ -2424,6 +2424,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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue