Skip to content

Commit

Permalink
Add a subtle progress bar
Browse files Browse the repository at this point in the history
  • Loading branch information
pde committed Oct 15, 2015
1 parent ab036e9 commit 2794b76
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions letsencrypt-auto
Original file line number Diff line number Diff line change
Expand Up @@ -64,17 +64,23 @@ then
fi
fi

echo "Updating letsencrypt and virtual environment dependencies..."
echo -n "Updating letsencrypt and virtual environment dependencies..."
if [ "$VERBOSE" = 1 ] ; then
echo
$VENV_BIN/pip install -U setuptools
$VENV_BIN/pip install -U pip
# nginx is buggy / disabled for now...
$VENV_BIN/pip install -U letsencrypt letsencrypt-apache #letsencrypt-nginx
else
$VENV_BIN/pip install -U setuptools > /dev/null
echo -n .
$VENV_BIN/pip install -U pip > /dev/null
echo -n .
# nginx is buggy / disabled for now...
$VENV_BIN/pip install -U letsencrypt letsencrypt-apache > /dev/null
$VENV_BIN/pip install -U letsencrypt > /dev/null
echo -n .
$VENV_BIN/pip install -U letsencrypt-apache > /dev/null
echo
fi

# Explain what's about to happen, for the benefit of those getting sudo
Expand Down

0 comments on commit 2794b76

Please sign in to comment.