Skip to content

Commit

Permalink
replace run_cmd with run_shell_cmd in custom easyblock for SEPP (…
Browse files Browse the repository at this point in the history
…`sepp.py`)
  • Loading branch information
branfosj committed Feb 3, 2024
1 parent dcd646c commit bd8c1a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions easybuild/easyblocks/s/sepp.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

from easybuild.easyblocks.generic.pythonpackage import PythonPackage
from easybuild.tools.filetools import apply_regex_substitutions, copy_dir, write_file
from easybuild.tools.run import run_cmd
from easybuild.tools.run import run_shell_cmd


class EB_SEPP(PythonPackage):
Expand All @@ -41,7 +41,7 @@ def configure_step(self, *args, **kwargs):
super(EB_SEPP, self).configure_step(*args, **kwargs)

# Configure sepp
run_cmd("python setup.py config -c")
run_shell_cmd("python setup.py config -c")

def install_step(self, *args, **kwargs):
"""
Expand Down

0 comments on commit bd8c1a1

Please sign in to comment.