From 06decd44ecd9556a08e94b8b941f26f5e56dd7ae Mon Sep 17 00:00:00 2001 From: Nate Barbettini Date: Tue, 24 Sep 2024 16:48:08 -0700 Subject: [PATCH] Update arcade up to use arcade-engine (#57) Fixes the binary name from `engine` to `arcade-engine` --- arcade/arcade/cli/launcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arcade/arcade/cli/launcher.py b/arcade/arcade/cli/launcher.py index 515d1276..180a44a1 100644 --- a/arcade/arcade/cli/launcher.py +++ b/arcade/arcade/cli/launcher.py @@ -160,7 +160,7 @@ def _build_engine_command(engine_config: str) -> list[str]: Returns: The command as a list. """ - engine_bin = shutil.which("engine") + engine_bin = shutil.which("arcade-engine") if not engine_bin: console.print( "❌ Engine binary not found, refer to the installation guide at "