Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
truemiller committed Dec 10, 2024
2 parents 0285115 + cb8934d commit fcc3a12
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions operate/services/deployment_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@

import psutil
import requests
import requests
from aea.__version__ import __version__ as aea_version
from autonomy.__version__ import __version__ as autonomy_version

Expand Down Expand Up @@ -305,6 +306,11 @@ def _start_tendermint(self) -> None:
class PyInstallerHostDeploymentRunnerMac(PyInstallerHostDeploymentRunner):
"""Mac deployment runner."""

@property
def _tendermint_bin(self) -> str:
"""Return tendermint path."""
return str(Path(sys._MEIPASS) / "tendermint_mac") # type: ignore # pylint: disable=protected-access


class PyInstallerHostDeploymentRunnerWindows(PyInstallerHostDeploymentRunner):
"""Windows deployment runner."""
Expand Down

0 comments on commit fcc3a12

Please sign in to comment.