From d80273f1cf982f23c95fc8bddab031c8c1ae005f Mon Sep 17 00:00:00 2001 From: Alexandru Popenta Date: Mon, 12 Feb 2024 15:05:32 +0200 Subject: [PATCH] skip installation of sc-meta deps if os is windows --- multiversx_sdk_cli/dependencies/modules.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/multiversx_sdk_cli/dependencies/modules.py b/multiversx_sdk_cli/dependencies/modules.py index 0638e21c..797e177b 100644 --- a/multiversx_sdk_cli/dependencies/modules.py +++ b/multiversx_sdk_cli/dependencies/modules.py @@ -1,5 +1,6 @@ import logging import os +import platform import shutil from os import path from pathlib import Path @@ -311,6 +312,11 @@ def _install_twiggy(self): def _install_sc_meta_deps(self): # this is needed for sc-meta to run the tests + # if os is Windows skip insallation + os = platform.system().lower() + if os == "windows": + return + logger.info("Installing sc-meta dependencies.") args = ["sc-meta", "install", "all"] myprocess.run_process(args)