From 23dc112f2a1c102d9f7890a7a477c05bf678eb65 Mon Sep 17 00:00:00 2001 From: user Date: Fri, 13 Dec 2024 10:47:49 +0300 Subject: [PATCH] build exe --- run.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/run.py b/run.py index d9d9c0f..37a4ad2 100644 --- a/run.py +++ b/run.py @@ -64,10 +64,13 @@ pybullet_command = [ "run", "python", "utils/pybullet_server.py", -] if command_type == 'local' else 'pybullet_server.exe' +] if command_type == 'local' else ['pybullet_server.exe'] # Если включен режим тестирования, добавляем флаг --test if args.bullet_gui: + # if type(pybullet_command) is str: + # pybullet_command += '--test' + # else: pybullet_command.append("--test") # Запуск pybullet_server.exe