From bd291eb0d1c7f802ca5081a8755562ab786db2a2 Mon Sep 17 00:00:00 2001 From: Ilya Isaev Date: Fri, 22 Nov 2024 10:31:52 +0100 Subject: [PATCH] Fix module show when using Lmod (#1567) --- integration/linux/modulefiles/tbb | 4 ++-- integration/linux/modulefiles/tbb32 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/integration/linux/modulefiles/tbb b/integration/linux/modulefiles/tbb index b8c695ed2c..58113ee62c 100644 --- a/integration/linux/modulefiles/tbb +++ b/integration/linux/modulefiles/tbb @@ -1,6 +1,6 @@ #%Module1.0################################################################### # -# Copyright (c) 2020-2023 Intel Corporation +# Copyright (c) 2020-2024 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -50,7 +50,7 @@ module-whatis "Dependencies: none" proc ModulesHelp { } { global modulefilename global modulefilever - module whatis "${modulefilename}/${modulefilever}" + puts "module whatis ${modulefilename}/${modulefilever}" } ############################################################################## diff --git a/integration/linux/modulefiles/tbb32 b/integration/linux/modulefiles/tbb32 index db34135176..89d6bc60fe 100644 --- a/integration/linux/modulefiles/tbb32 +++ b/integration/linux/modulefiles/tbb32 @@ -1,6 +1,6 @@ #%Module1.0################################################################### # -# Copyright (c) 2020-2023 Intel Corporation +# Copyright (c) 2020-2024 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -50,7 +50,7 @@ module-whatis "Dependencies: none" proc ModulesHelp { } { global modulefilename global modulefilever - module whatis "${modulefilename}/${modulefilever}" + puts "module whatis ${modulefilename}/${modulefilever}" } ##############################################################################