Skip to content

Commit 84911f8

Browse files
committed
sort easyconfig filenames in log message for parsed easystack to fix failing test
1 parent dc91f0c commit 84911f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

easybuild/framework/easystack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def parse_easystack(filepath):
225225

226226
general_options = easystack.get_general_options()
227227

228-
_log.debug("EasyStack parsed. Proceeding to install these Easyconfigs: %s" % ", ".join(easyconfig_names))
228+
_log.debug("EasyStack parsed. Proceeding to install these Easyconfigs: %s" % ', '.join(sorted(easyconfig_names)))
229229
if len(general_options) != 0:
230230
_log.debug("General options for installation are: \n%s" % str(general_options))
231231
else:

0 commit comments

Comments
 (0)