Skip to content

Commit

Permalink
Merge pull request #355 from multiversx/fix-vmtools-installer
Browse files Browse the repository at this point in the history
Fix vmtools installation
  • Loading branch information
popenta authored Nov 2, 2023
2 parents ba4360d + 6995c9d commit f0f9365
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions multiversx_sdk_cli/dependencies/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,11 @@ def copy_libwasmer_in_parent_directory(self, tag: str):
def get_env(self) -> Dict[str, str]:
return dict()

def get_source_directory(self, tag: str) -> Path:
directory = self.get_directory(tag)
first_subdirectory = next(directory.iterdir())
return first_subdirectory


class GolangModule(StandaloneModule):
def _post_install(self, tag: str):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "multiversx-sdk-cli"
version = "8.1.3"
version = "8.1.4"
authors = [
{ name="MultiversX" },
]
Expand Down

0 comments on commit f0f9365

Please sign in to comment.