Correct length of dividers.

This commit is contained in:
Erik Rose
2015-12-03 19:21:35 -05:00
parent 4a44c46c60
commit 6db54e21f6
+5 -5
View File
@@ -185,15 +185,15 @@ elif [ "$1" = "--no-self-upgrade" ]; then
echo "Installing Python packages..."
TEMP_DIR=$(TempDir)
# There is no $ interpolation due to quotes on heredoc delimiters.
# ---------------------------------------------------------------------------
# -------------------------------------------------------------------------
cat << "UNLIKELY_EOF" > $TEMP_DIR/letsencrypt-auto-requirements.txt
{{ letsencrypt-auto-requirements.txt }}
UNLIKELY_EOF
# ---------------------------------------------------------------------------
# -------------------------------------------------------------------------
cat << "UNLIKELY_EOF" > $TEMP_DIR/peep.py
{{ peep.py }}
UNLIKELY_EOF
# ---------------------------------------------------------------------------
# -------------------------------------------------------------------------
set +e
PEEP_OUT=`$VENV_BIN/python $TEMP_DIR/peep.py install -r $TEMP_DIR/letsencrypt-auto-requirements.txt`
PEEP_STATUS=$?
@@ -219,11 +219,11 @@ else
echo "Checking for new version..."
TEMP_DIR=$(TempDir)
# -------------------------------------------------------------------------
# ---------------------------------------------------------------------------
cat << "UNLIKELY_EOF" > $TEMP_DIR/fetch.py
{{ fetch.py }}
UNLIKELY_EOF
# -------------------------------------------------------------------------
# ---------------------------------------------------------------------------
DeterminePythonVersion
REMOTE_VERSION=`$LE_PYTHON $TEMP_DIR/fetch.py --latest-version`
if [ "$LE_AUTO_VERSION" != "$REMOTE_VERSION" ]; then