Fixed export templates path

This commit is contained in:
RodZill4 2020-03-15 07:08:07 +01:00
parent 7f48d5871a
commit fc72fd0af4

View File

@ -243,7 +243,7 @@ func create_file_from_template(template : String, file_name : String, export_con
var in_file = File.new() var in_file = File.new()
var out_file = File.new() var out_file = File.new()
if in_file.open(mm_loader.STD_GENDEF_PATH+"/"+template, File.READ) != OK: if in_file.open(mm_loader.STD_GENDEF_PATH+"/"+template, File.READ) != OK:
if in_file.open(OS.get_executable_path().get_base_dir()+"/generators/"+template, File.READ) != OK: if in_file.open(OS.get_executable_path().get_base_dir()+"/nodes/"+template, File.READ) != OK:
print("Cannot find template file "+template) print("Cannot find template file "+template)
return false return false
Directory.new().remove(file_name) Directory.new().remove(file_name)