bootstrap.sh needs to apt-get update before it does an apt-get install, fixes #431

This commit is contained in:
Joshua Tauberer 2015-06-10 09:33:47 -04:00
parent d152603abd
commit 1ef455d37d
1 changed files with 6 additions and 3 deletions

View File

@ -18,9 +18,12 @@ fi
# Clone the Mail-in-a-Box repository if it doesn't exist.
if [ ! -d $HOME/mailinabox ]; then
echo Installing git . . .
DEBIAN_FRONTEND=noninteractive apt-get -q -q install -y git < /dev/null
echo
if [ ! -f /usr/bin/git ]; then
echo Installing git . . .
apt-get -q -q update
DEBIAN_FRONTEND=noninteractive apt-get -q -q install -y git < /dev/null
echo
fi
echo Downloading Mail-in-a-Box $TAG. . .
git clone \