From d4aecba6e0b8e2263ee8c92fe14f4e066ec7ec1c Mon Sep 17 00:00:00 2001 From: Benedikt Kuehne <62940240+BenediktMKuehne@users.noreply.github.com> Date: Fri, 1 Mar 2024 10:43:19 +0100 Subject: [PATCH] fix sudo issue --- embark/uploader/boundedexecutor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embark/uploader/boundedexecutor.py b/embark/uploader/boundedexecutor.py index d4381d1e..0daa7a88 100644 --- a/embark/uploader/boundedexecutor.py +++ b/embark/uploader/boundedexecutor.py @@ -42,7 +42,7 @@ semaphore = BoundedSemaphore(MAX_QUEUE) # emba directories -EMBA_SCRIPT_LOCATION = f"cd {settings.EMBA_ROOT} && sudo -E ./emba" +EMBA_SCRIPT_LOCATION = f"cd {settings.EMBA_ROOT} && sudo ./emba" class BoundedException(Exception):