Skip to content

Commit 3f52540

Browse files
author
Samuel Moors
committed
update comments
1 parent b952664 commit 3f52540

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

easybuild/easyblocks/a/amber.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def configure_step(self):
128128
return
129129

130130
# CMake will search a previous install directory for Amber-compiled libs. We will therefore
131-
# manually empty the install directory prior to configuration.
131+
# manually clean the install directory prior to configuration.
132132
clean_dir(self.installdir)
133133

134134
external_libs_list = []

easybuild/easyblocks/generic/tarball.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ def install_step(self, src=None):
109109
install_path = self.installdir
110110
install_logmsg = "Merging tarball contents of %s into %s..."
111111
elif self.cfg['install_type'] is None:
112-
# Empty and copy root of installation directory (default)
112+
# Clean and copy root of installation directory (default)
113113
install_path = self.installdir
114-
install_logmsg = "Copying tarball contents of %s into %s after emptying it..."
114+
install_logmsg = "Copying tarball contents of %s into %s after cleaning it..."
115115
clean_dir(install_path)
116116
else:
117117
raise EasyBuildError("Unknown option '%s' for index_type.", self.cfg['install_type'])

0 commit comments

Comments
 (0)