Skip to content

Commit

Permalink
replace run_cmd with run_shell_cmd in custom easyblock for Rosett…
Browse files Browse the repository at this point in the history
…a (`rosetta.py`)
  • Loading branch information
branfosj committed Feb 3, 2024
1 parent dcd646c commit f94a23c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions easybuild/easyblocks/r/rosetta.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
from easybuild.tools.build_log import EasyBuildError
from easybuild.tools.filetools import change_dir, extract_file, mkdir, write_file
from easybuild.tools.modules import get_software_version
from easybuild.tools.run import run_cmd
from easybuild.tools.run import run_shell_cmd
from easybuild.tools.systemtools import get_shared_lib_ext


Expand Down Expand Up @@ -186,7 +186,7 @@ def build_step(self):
if self.cfg['parallel']:
par = "-j %s" % self.cfg['parallel']
cmd = "python ./scons.py %s %s bin" % (self.cfg['buildopts'], par)
run_cmd(cmd, log_all=True, simple=True)
run_shell_cmd(cmd)

def install_step(self):
"""
Expand Down

0 comments on commit f94a23c

Please sign in to comment.