Skip to content

Commit fd35784

Browse files
authored
Merge pull request #3166 from bartoldeman/20240207123422_new_pr_palm
replace `run_cmd` with `run_shell_cmd` in custom easyblock for PALM (`palm.py`)
2 parents f247ccd + 1a7c59b commit fd35784

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

easybuild/easyblocks/p/palm.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
from easybuild.framework.easyblock import EasyBlock
3333
from easybuild.tools.filetools import find_glob_pattern
34-
from easybuild.tools.run import run_cmd
34+
from easybuild.tools.run import run_shell_cmd
3535

3636

3737
class EB_PALM(EasyBlock):
@@ -65,7 +65,7 @@ def install_step(self):
6565
"-p %s" % self.installdir,
6666
self.cfg['installopts'],
6767
])
68-
run_cmd(cmd, log_all=True, simple=True)
68+
run_shell_cmd(cmd)
6969

7070
def sanity_check_step(self):
7171
"""Custom sanity check for PALM."""

0 commit comments

Comments
 (0)