Skip to content

Commit abb9ebb

Browse files
committed
add EB version check to terse build option check
1 parent 23343ee commit abb9ebb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

eb_hooks.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@
7272
orig_print_warning = print_warning
7373

7474
def print_msg(*args, **kwargs):
75-
if not build_option('terse'):
75+
if EASYBUILD_VERSION < '4.9.1' or not build_option('terse'):
7676
orig_print_msg(*args, **kwargs)
7777

78-
78+
7979
def print_warning(*args, **kwargs):
80-
if not build_option('terse'):
80+
if EASYBUILD_VERSION < '4.9.1' or not build_option('terse'):
8181
orig_print_warning(*args, **kwargs)
8282

8383

0 commit comments

Comments
 (0)