From 584ad9d6d6bf0979f66da025754a051d470c411f Mon Sep 17 00:00:00 2001 From: Arthur Maltson Date: Wed, 7 Aug 2013 23:04:10 -0400 Subject: [PATCH] Fix bootstrap on clean install On a clean Ubuntu 13.04 install, the bootstrap script fails with: make: apt-add-repository: Command not found make: *** [docker] Error 127 This happens because 'software-properties-common' needs to be installed. --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index aa619fa03..09087b613 100644 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -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