Skip to content

Commit

Permalink
fix sudo issue
Browse files Browse the repository at this point in the history
  • Loading branch information
BenediktMKuehne authored Mar 1, 2024
1 parent 723a849 commit d4aecba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion embark/uploader/boundedexecutor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit d4aecba

Please sign in to comment.