From ff0c7a0d7d7cb312a49d2bd9c1c4e588eb8d585c Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 6 Jan 2015 08:35:23 +0000 Subject: [PATCH] Add buildpack changes into upgrade for Heroku. Closes #297 --- docs/heroku/upgrade.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/heroku/upgrade.md b/docs/heroku/upgrade.md index 003c424a..9cac260c 100644 --- a/docs/heroku/upgrade.md +++ b/docs/heroku/upgrade.md @@ -42,6 +42,20 @@ $ git fetch origin $ git reset --hard origin/master ``` +## Change the buildpack + +You'll only need to do this if your `BUILDPACK_URL` env var is different to `https://github.com/cachethq/cachet-buildpack`. You can check this by running: + +```bash +$ heroku config:get BUILDPACK_URL +``` + +If you're buildpack does not match the above, you need to run: + +```bash +$ heroku config:set BUILDPACK_URL=https://github.com/cachethq/cachet-buildpack +``` + ## Push the changes Our app will now be running the latest version of Cachet, we just need to push it back to Heroku.