diff options
| author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-09-28 14:04:41 +0000 |
|---|---|---|
| committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-09-28 14:04:41 +0000 |
| commit | 8a77960769efbb15e72bb3555106d7b524051256 (patch) | |
| tree | 111a94ce6432d67116f153007d8a1743c4797fce /Mac/BuildScript/scripts/postflight.patch-profile | |
| parent | d19d947cb5684dad2798ec484da62d79822e0453 (diff) | |
| download | cpython-8a77960769efbb15e72bb3555106d7b524051256.tar.gz | |
Merged revisions 85059 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85059 | ronald.oussoren | 2010-09-28 15:57:58 +0200 (Tue, 28 Sep 2010) | 5 lines
Add support for the ZSH shell to the "Update Shell Profile" script
on MacOSX.
Patch by Sylvain Mora, issue #9701.
........
Diffstat (limited to 'Mac/BuildScript/scripts/postflight.patch-profile')
| -rwxr-xr-x | Mac/BuildScript/scripts/postflight.patch-profile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Mac/BuildScript/scripts/postflight.patch-profile b/Mac/BuildScript/scripts/postflight.patch-profile index cbf41629af..36d0a3e40e 100755 --- a/Mac/BuildScript/scripts/postflight.patch-profile +++ b/Mac/BuildScript/scripts/postflight.patch-profile @@ -20,7 +20,7 @@ fi # Make sure the directory ${PYTHON_ROOT}/bin is on the users PATH. BSH="`basename "${theShell}"`" case "${BSH}" in -bash|ksh|sh|*csh) +bash|ksh|sh|*csh|zsh) if [ `id -ur` = 0 ]; then P=`su - ${USER} -c 'echo A-X-4-X@@$PATH@@X-4-X-A' | grep 'A-X-4-X@@.*@@X-4-X-A' | sed -e 's/^A-X-4-X@@//g' -e 's/@@X-4-X-A$//g'` else @@ -76,6 +76,9 @@ bash) PR="${HOME}/.bash_profile" fi ;; +zsh) + PR="${HOME}/.zprofile" + ;; *sh) PR="${HOME}/.profile" ;; |
