Skip to content

Commit f606beb

Browse files
committed
mac tm fix
1 parent 3efd769 commit f606beb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

operate/services/service.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ def generate_config_tendermint(self) -> "HostDeploymentGenerator":
278278
"""Generate tendermint configuration."""
279279
tmhome = str(self.build_dir / "node")
280280
tendermint_executable = str(
281-
shutil.which("tendermint"),
281+
Path(os.path.dirname(sys.executable)) / "tendermint"
282282
)
283283
# TODO: move all platform related things to a dedicated file
284284
if platform.system() == "Windows":

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@
6363
"download-binaries": "sh download_binaries.sh",
6464
"build:pearl": "sh build_pearl.sh"
6565
},
66-
"version": "0.1.0-rc215"
66+
"version": "0.1.0-rc216"
6767
}

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "olas-operate-middleware"
3-
version = "0.1.0-rc215"
3+
version = "0.1.0-rc216"
44
description = ""
55
authors = ["David Vilela <[email protected]>", "Viraj Patel <[email protected]>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)