diff --git a/run-editor.sh b/run-editor.sh index 93e0b2d..43487d2 100755 --- a/run-editor.sh +++ b/run-editor.sh @@ -1,4 +1,5 @@ #!/bin/sh +ARCH=$(uname -i|sed -e 's/aarch64/arm64/g') cd godot -gdb --args ../src/godot/bin/godot.x11.opt.tools.64 --verbose -e $* +gdb --args ../src/godot/bin/godot.x11.opt.tools.${ARCH} --verbose -e $*