From 01c733bed15c300c9fabf4bc3bdd05c7d03698d6 Mon Sep 17 00:00:00 2001 From: Peter Eckersley Date: Sat, 7 Nov 2015 20:36:30 -0800 Subject: [PATCH] Fix ExperimentalBootstrap on Mac Fixes: #1408 --- letsencrypt-auto | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/letsencrypt-auto b/letsencrypt-auto index 2391a7c0b..ba95350e4 100755 --- a/letsencrypt-auto +++ b/letsencrypt-auto @@ -33,7 +33,11 @@ ExperimentalBootstrap() { if [ "$DEBUG" = 1 ] ; then if [ "$2" != "" ] ; then echo "Bootstrapping dependencies for $1..." - "$3" "$BOOTSTRAP/$2" + if [ "$3" != "" ] ; then + "$3" "$BOOTSTRAP/$2" + else + "$BOOTSTRAP/$2" + fi fi else echo "WARNING: $1 support is very experimental at present..." @@ -43,7 +47,6 @@ ExperimentalBootstrap() { fi } - DeterminePythonVersion() { if which python2 > /dev/null ; then export LE_PYTHON=${LE_PYTHON:-python2}