Files
Pmodules/Pmodules/modulefile
T

25 lines
669 B
Plaintext

#%Module1.0
module-whatis "Pmodules environment"
module-url "https://gitlab.psi.ch/Pmodules/src"
module-license "GNU GPL v2"
module-maintainer "Achim Gsell <achim.gsell@psi.ch>"
module-help "
Pmodules are a hierarchical module environment based on Environment Modules.
"
#
# It might be that '${PMODULES_ROOT}/Tools/Pmodules/VERSION' is in PATH.
# Why? With older version the PATH might have been set without loading
# a module.
#
if { [module-info mode load] } {
set PATH ":$::env(PATH):"
if { [regexp -- {.*:(.*/Pmodules/[^:]*):} $PATH -> str] } {
if { [string compare $str $PREFIX/bin] != 0 } {
remove-path PATH $str
}
}
}