From eac594a98349a374355f9f32519be09c7d3bffdd Mon Sep 17 00:00:00 2001 From: Roy Crihfield Date: Tue, 18 Jul 2023 02:22:05 +0800 Subject: [PATCH] remote flag can be set from env --- app/deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/deploy.py b/app/deploy.py index 2b60b8d9..3f769f3e 100644 --- a/app/deploy.py +++ b/app/deploy.py @@ -228,7 +228,7 @@ def _make_runtime_env(ctx): "CERC_HOST_UID": f"{os.getuid()}", "CERC_HOST_GID": f"{os.getgid()}" } - container_exec_env.update({"CERC_SCRIPT_DEBUG": "true", "CERC_REMOTE_DEBUG": "true"} if ctx.debug else {}) + container_exec_env.update({"CERC_SCRIPT_DEBUG": "true"} if ctx.debug else {}) return container_exec_env