Skip to content

Commit

Permalink
replace run_cmd with run_shell_cmd in ant.py
Browse files Browse the repository at this point in the history
  • Loading branch information
branfosj committed Jan 28, 2024
1 parent f1221e2 commit ad1fe81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions easybuild/easyblocks/a/ant.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
from easybuild.easyblocks.generic.packedbinary import PackedBinary
from easybuild.tools.build_log import EasyBuildError
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_ant(PackedBinary):
Expand All @@ -58,4 +58,4 @@ def install_step(self):

cmd = "sh build.sh -Ddist.dir=%s dist" % self.installdir

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

0 comments on commit ad1fe81

Please sign in to comment.