Skip to content

Commit

Permalink
Merge pull request #3132 from branfosj/20240201140551_new_pr_go
Browse files Browse the repository at this point in the history
replace `run_cmd` with `run_shell_cmd` in custom easyblock for Go (`go.py`)
  • Loading branch information
jfgrimm authored Feb 9, 2024
2 parents 4b984f3 + 874f761 commit be626ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions easybuild/easyblocks/g/go.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
from easybuild.easyblocks.generic.configuremake import ConfigureMake
from easybuild.tools.build_log import EasyBuildError
from easybuild.tools.filetools import remove_dir
from easybuild.tools.run import run_cmd
from easybuild.tools.run import run_shell_cmd
from easybuild.tools.modules import get_software_root


Expand Down Expand Up @@ -77,7 +77,7 @@ def install_step(self):
else:
cmd = "GOROOT_FINAL=%s ./all.bash" % self.installdir

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

try:
remove_dir(self.installdir)
Expand Down

0 comments on commit be626ff

Please sign in to comment.