File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ Error EditorExportPlatformLinuxBSD::_export_debug_script(const Ref<EditorExportP
5050 }
5151
5252 f->store_line (" #!/bin/sh" );
53- f->store_line (" echo -ne '\\ 033c\\ 033]0;" + p_app_name + " \\ a'" );
53+ f->store_line (" printf '\\ 033c\\ 033]0;%s \\ a' " + p_app_name );
5454 f->store_line (" base_path=\" $(dirname \" $(realpath \" $0\" )\" )\" " );
5555 f->store_line (" \" $base_path/" + p_pkg_name + " \" \" $@\" " );
5656
Original file line number Diff line number Diff line change @@ -1500,7 +1500,7 @@ Error EditorExportPlatformMacOS::_export_debug_script(const Ref<EditorExportPres
15001500 }
15011501
15021502 f->store_line (" #!/bin/sh" );
1503- f->store_line (" echo -ne '\\ 033c\\ 033]0;" + p_app_name + " \\ a'" );
1503+ f->store_line (" printf '\\ 033c\\ 033]0;%s \\ a' " + p_app_name );
15041504 f->store_line (" " );
15051505 f->store_line (" function app_realpath() {" );
15061506 f->store_line (" SOURCE=$1" );
You can’t perform that action at this time.
0 commit comments