Skip to content

Commit

Permalink
Merge branch 'main' into support/3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dsuch committed Nov 6, 2023
2 parents 148dbdc + ce27c4f commit 9d2d3b7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/zato-server/src/zato/server/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
from zato.common.util.platform_ import is_windows
from zato.common.typing_ import cast_
from zato.common.util import new_cid
from zato.common.util.api import get_zato_command

# ################################################################################################################################
# ################################################################################################################################
Expand Down Expand Up @@ -370,7 +371,7 @@ def run_zato_cli_async(
) -> 'CommandResult':

# This will differ depending on our current OS
zato_bin = 'zato.bat' if is_windows else 'zato'
zato_bin = 'zato.bat' if is_windows else get_zato_command()

# Build the full command to execute
command = f'{zato_bin} {command}'
Expand Down

0 comments on commit 9d2d3b7

Please sign in to comment.