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): 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" }, ]