Fix buglet in postinstall script, it would generate an invalid .cshrc file.

This commit is contained in:
Ronald Oussoren 2006-05-26 11:17:55 +00:00
parent 03fb444990
commit 072a24c33a

View file

@ -41,7 +41,7 @@ case "${BSH}" in
echo "" >> "${HOME}/.cshrc"
echo "# Setting PATH for MacPython ${PYVER}" >> "${HOME}/.cshrc"
echo "# The orginal version is saved in .cshrc.pysave" >> "${HOME}/.cshrc"
echo "setenv path=(${PYTHON_ROOT}/bin "'$path'")" >> "${HOME}/.cshrc"
echo "set path=(${PYTHON_ROOT}/bin "'$path'")" >> "${HOME}/.cshrc"
exit 0
;;
bash)