Quote the files when writing the commands.

This commit is contained in:
Relintai 2022-12-14 09:57:37 +01:00
parent 713cd3a147
commit d8f3561649
1 changed files with 3 additions and 3 deletions

View File

@ -246,7 +246,7 @@ func _on_Apply_pressed() -> void:
print("_on_Apply_pressed dir.copy(cimagefn, targetf) err != OK! " + str(err))
return
append_command("mv " + cimagefn + " " + targetf)
append_command("mv \"" + cimagefn + "\" \"" + targetf + "\"")
err = dir.remove(cimagefn)
@ -282,7 +282,7 @@ func _on_NewCategoryPopup_confirmed() -> void:
var d : Directory = Directory.new()
d.make_dir_recursive(folder)
append_command("mkdir " + folder)
append_command("mkdir \"" + folder + "\"")
refresh_categories()
refresh_sub_categories()
@ -300,7 +300,7 @@ func _on_NewSubCategoryPopup_confirmed() -> void:
var d : Directory = Directory.new()
d.make_dir_recursive(folder)
append_command("mkdir " + folder)
append_command("mkdir \"" + folder + "\"")
refresh_sub_categories()