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}