Merge pull request #158 from amaltson/patch-1

Fix bootstrap on clean install
This commit is contained in:
Jeff Lindsay
2013-08-08 08:28:27 -07:00

View File

@@ -3,7 +3,7 @@ export DEBIAN_FRONTEND=noninteractive
export DOKKU_REPO=${DOKKU_REPO:-"https://github.com/progrium/dokku.git"}
apt-get update
apt-get install -y git make curl
apt-get install -y git make curl software-properties-common
cd ~ && test -d dokku || git clone $DOKKU_REPO
cd dokku && test $DOKKU_BRANCH && git checkout origin/$DOKKU_BRANCH || true