Skip to content

Commit

Permalink
Update server.py
Browse files Browse the repository at this point in the history
  • Loading branch information
D3vil0p3r authored Oct 21, 2024
1 parent 4dd89f8 commit 250944e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions empire/server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from empire.server.core.config import empire_config
from empire.server.core.db import base
from empire.server.utils import file_util
from empire.server.utils.file_util import run_as_user
from empire.server.utils.file_util import run_command
from empire.server.utils.log_util import LOG_FORMAT, SIMPLE_LOG_FORMAT, ColorFormatter

log = logging.getLogger(__name__)
Expand Down Expand Up @@ -145,7 +145,7 @@ def check_submodules():

def fetch_submodules():
command = ["git", "submodule", "update", "--init", "--recursive"]
run_as_user(command)
run_command(command)


def check_recommended_configuration():
Expand Down

0 comments on commit 250944e

Please sign in to comment.