From 30bd933e685d51a75f7be33ab105aa31ebc42516 Mon Sep 17 00:00:00 2001 From: Brandon Evans Date: Tue, 2 Jul 2013 14:21:24 -0600 Subject: [PATCH 1/2] Change filename used in Advanced Installation section of README wget uses the given url to name the downloaded file and doesn't take the redirect into account --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 53c0f1a09..46dca9778 100644 --- a/README.md +++ b/README.md @@ -58,9 +58,9 @@ repositories. The GITRECEIVE_URL and DOKKU_REPO environment variables may be set to override the defaults (see the bootstrap.sh script for how these apply). Example: $ wget j.mp/dokku-bootstrap - $ chmod +x bootstrap.sh - $ sudo DOKKU_REPO=https://github.com/yourusername/dokku.git ./bootstrap.sh - + $ chmod +x dokku-bootstrap + $ sudo DOKKU_REPO=https://github.com/yourusername/dokku.git ./dokku-bootstrap + ## Upgrading Dokku is in active development. You can update the deployment step and the build step separately. From 04e061883330237e30e4fe05c9d2863f261dce70 Mon Sep 17 00:00:00 2001 From: Brandon Evans Date: Tue, 2 Jul 2013 14:32:18 -0600 Subject: [PATCH 2/2] Just use the non-redirected URL instead --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 46dca9778..c8f1fafe2 100644 --- a/README.md +++ b/README.md @@ -57,9 +57,9 @@ The bootstrap script allows source URLs to be overridden to include customizatio repositories. The GITRECEIVE_URL and DOKKU_REPO environment variables may be set to override the defaults (see the bootstrap.sh script for how these apply). Example: - $ wget j.mp/dokku-bootstrap - $ chmod +x dokku-bootstrap - $ sudo DOKKU_REPO=https://github.com/yourusername/dokku.git ./dokku-bootstrap + $ wget https://raw.github.com/progrium/dokku/master/bootstrap.sh + $ chmod +x bootstrap.sh + $ sudo DOKKU_REPO=https://github.com/yourusername/dokku.git ./bootstrap.sh ## Upgrading