Fix ExperimentalBootstrap on Mac

Fixes: #1408
This commit is contained in:
Peter Eckersley
2015-11-07 20:36:30 -08:00
parent e653aa49f8
commit 01c733bed1
+5 -2
View File
@@ -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}