Files
Pmodules/Pmodules/profile.zsh.in
T

26 lines
490 B
Bash

#!/bin/zsh
#
# set default version
: ${PMODULES_VERSION:=@PMODULES_VERSION@}
##### no changes below this line ######
export PMODULES_VERSION
declare __this_file__=${(%):-%N}
declare -x PMODULES_HOME="${__this_file____:h:h}/Tools/Pmodules/${PMODULES_VERSION}"
unset __this_file__
test -r "${PMODULES_HOME}/init/zsh" && source "$_"
if [[ $? != 0 ]]; then
echo "Oops: cannot initialize Pmodules!"
return 1
fi
# Local Variables:
# mode: sh
# sh-basic-offset: 8
# tab-width: 8
# End: