mirror of
https://github.com/python/cpython.git
synced 2025-08-01 15:43:13 +00:00

/Developer/Documentation/Python, better for users that install multiple versions of python.
11 lines
339 B
Bash
Executable file
11 lines
339 B
Bash
Executable file
#!/bin/sh
|
|
|
|
PYVER="@PYVER@"
|
|
|
|
if [ -d /Developer/Documentation ]; then
|
|
if [ ! -d /Developer/Documentation/Python ]; then
|
|
mkdir -p /Developer/Documentation/Python
|
|
fi
|
|
|
|
ln -fhs /Library/Frameworks/Python.framework/Versions/${PYVER}/Resources/English.lproj/Documentation "/Developer/Documentation/Python/Reference Documentation @PYVER@"
|
|
fi
|