blob: 59d6bb759ff1712f4cbf09a1069d11c0fb96964d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
echo ""
echo "ZSH: For the use of module-cmd in a none-login Z-shell enviroment"
echo "the following entry should be added to the zshrc "
echo "(or zshenv if the module-cmd should be available in shell-scripts)"
echo ""
echo " (( \${+functions[module]} )) || source /usr/env-modules/init/zsh"
echo ""
}
post_upgrade() {
post_install
}
|