mirror of
https://github.com/certbot/certbot.git
synced 2026-04-29 18:19:51 -04:00
system python path has changed on el capitan. Look for both old and new
path
This commit is contained in:
parent
c3607fbd1f
commit
4cb35eaeb3
1 changed files with 2 additions and 1 deletions
|
|
@ -16,7 +16,8 @@ BootstrapMac() {
|
|||
|
||||
$pkgcmd augeas
|
||||
$pkgcmd dialog
|
||||
if [ "$(which python)" = "/System/Library/Frameworks/Python.framework/Versions/2.7/bin/python" ]; then
|
||||
if [ "$(which python)" = "/System/Library/Frameworks/Python.framework/Versions/2.7/bin/python" \
|
||||
-o "$(which python)" = "/usr/bin/python" ]; then
|
||||
# We want to avoid using the system Python because it requires root to use pip.
|
||||
# python.org, MacPorts or HomeBrew Python installations should all be OK.
|
||||
echo "Installing python..."
|
||||
|
|
|
|||
Loading…
Reference in a new issue