Skip to content

Commit bd291eb

Browse files
authored
Fix module show when using Lmod (#1567)
1 parent 0d545e2 commit bd291eb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

integration/linux/modulefiles/tbb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#%Module1.0###################################################################
22
#
3-
# Copyright (c) 2020-2023 Intel Corporation
3+
# Copyright (c) 2020-2024 Intel Corporation
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.
@@ -50,7 +50,7 @@ module-whatis "Dependencies: none"
5050
proc ModulesHelp { } {
5151
global modulefilename
5252
global modulefilever
53-
module whatis "${modulefilename}/${modulefilever}"
53+
puts "module whatis ${modulefilename}/${modulefilever}"
5454
}
5555

5656
##############################################################################

integration/linux/modulefiles/tbb32

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#%Module1.0###################################################################
22
#
3-
# Copyright (c) 2020-2023 Intel Corporation
3+
# Copyright (c) 2020-2024 Intel Corporation
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.
@@ -50,7 +50,7 @@ module-whatis "Dependencies: none"
5050
proc ModulesHelp { } {
5151
global modulefilename
5252
global modulefilever
53-
module whatis "${modulefilename}/${modulefilever}"
53+
puts "module whatis ${modulefilename}/${modulefilever}"
5454
}
5555

5656
##############################################################################

0 commit comments

Comments
 (0)