Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions easybuild/easyblocks/a/amber.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
from easybuild.tools.build_log import EasyBuildError
from easybuild.tools.modules import get_software_root
from easybuild.tools.run import run_shell_cmd
from easybuild.tools.filetools import remove_dir, which
from easybuild.tools.filetools import clean_dir, which


class EB_Amber(CMakeMake):
Expand Down Expand Up @@ -130,8 +130,8 @@ def configure_step(self):
return

# CMake will search a previous install directory for Amber-compiled libs. We will therefore
# manually remove the install directory prior to configuration.
remove_dir(self.installdir)
# manually clean the install directory prior to configuration.
clean_dir(self.installdir)

external_libs_list = []

Expand Down