6 lines
136 B
Bash
Executable File
6 lines
136 B
Bash
Executable File
#!/bin/sh
|
|
ARCH=$(uname -i|sed -e 's/aarch64/arm64/g')
|
|
|
|
cd godot
|
|
gdb --args ../src/godot/bin/godot.x11.opt.tools.${ARCH} --verbose -e $*
|