Skip to content

Commit

Permalink
Merge pull request #197 from e-m-b-a/fix-sudo
Browse files Browse the repository at this point in the history
fix sudo issue
  • Loading branch information
m-1-k-3 authored Mar 1, 2024
2 parents 723a849 + d4aecba commit de065c1
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 de065c1

Please sign in to comment.