We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aa312e9 + d06a71b commit 5bedd42Copy full SHA for 5bedd42
eb_hooks.py
@@ -68,16 +68,17 @@
68
69
70
# Ensure that we don't print any messages in --terse mode
71
+# Note that --terse was introduced in EB 4.9.1
72
orig_print_msg = print_msg
73
orig_print_warning = print_warning
74
75
def print_msg(*args, **kwargs):
- if not build_option('terse'):
76
+ if EASYBUILD_VERSION < '4.9.1' or not build_option('terse'):
77
orig_print_msg(*args, **kwargs)
78
-
79
+
80
def print_warning(*args, **kwargs):
81
82
orig_print_warning(*args, **kwargs)
83
84
0 commit comments