diff --git a/Makefile.toml b/Makefile.toml index 580a1b5..782a425 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -223,7 +223,7 @@ run_task = "run-godot" [tasks.run-for-macos] dependencies = ["build-x86_64-apple-darwin-debug"] -run_task = "run-godot" +run_task = "run-godot-macos" [tasks.run-for-windows] # dependencies = ["build-i686-pc-windows-gnu-debug"] @@ -239,6 +239,13 @@ cd ../godot/ godot -d ''' +[tasks.run-godot-macos] +script_runner = "@shell" +script = ''' +cd ../godot/ +/Applications/Godot.app/Contents/MacOS/Godot -d +''' + [tasks.run] run_task = [ { name = "run-for-windows", condition = { platforms = ["windows"] } },