From 2166f2a5ec77506c9622609326e64331f23d64df Mon Sep 17 00:00:00 2001 From: Alexandru Popenta Date: Thu, 2 Nov 2023 11:07:18 +0200 Subject: [PATCH 1/2] fix vmtools installation --- multiversx_sdk_cli/dependencies/modules.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/multiversx_sdk_cli/dependencies/modules.py b/multiversx_sdk_cli/dependencies/modules.py index 2e367fc2..b81cb05c 100644 --- a/multiversx_sdk_cli/dependencies/modules.py +++ b/multiversx_sdk_cli/dependencies/modules.py @@ -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): From 6995c9d026b6c9da91ae84fb29f56e394cf213e9 Mon Sep 17 00:00:00 2001 From: Alexandru Popenta Date: Thu, 2 Nov 2023 11:14:42 +0200 Subject: [PATCH 2/2] bump version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2ef3febd..d5d7ae7c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "multiversx-sdk-cli" -version = "8.1.3" +version = "8.1.4" authors = [ { name="MultiversX" }, ]