Skip to content

Commit

Permalink
skip installation of sc-meta deps if os is windows
Browse files Browse the repository at this point in the history
  • Loading branch information
popenta committed Feb 12, 2024
1 parent c1afaa3 commit d80273f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions multiversx_sdk_cli/dependencies/modules.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import logging
import os
import platform
import shutil
from os import path
from pathlib import Path
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit d80273f

Please sign in to comment.