Skip to content

Commit

Permalink
replace run_cmd with run_shell_cmd in custom easyblock for ROOT (…
Browse files Browse the repository at this point in the history
…`root.py`)
  • Loading branch information
branfosj committed Feb 3, 2024
1 parent dcd646c commit 9ded536
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions easybuild/easyblocks/r/root.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
from easybuild.tools.environment import setvar
from easybuild.tools.filetools import find_glob_pattern
from easybuild.tools.modules import get_software_root, get_software_version
from easybuild.tools.run import run_cmd
from easybuild.tools.run import run_shell_cmd


class EB_ROOT(CMakeMake):
Expand Down Expand Up @@ -116,7 +116,7 @@ def configure_step(self):
self.installdir,
self.cfg['configopts'])

run_cmd(cmd, log_all=True, log_ok=True, simple=True)
run_shell_cmd(cmd)

def sanity_check_step(self):
"""Custom sanity check for ROOT."""
Expand Down

0 comments on commit 9ded536

Please sign in to comment.