From cb6213adeead18aef074d7c4e6d5174a44b8da7c Mon Sep 17 00:00:00 2001 From: Mirko Stocker Date: Fri, 16 Jan 2015 11:25:20 +0100 Subject: [PATCH] Pull new tags when upgrading to update VERSION During an upgrade, the output of `git describe --tags` is written to the VERSION file, so we need to pull the tags otherwise it looks like we're running an old version. --- docs/upgrading.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/upgrading.md b/docs/upgrading.md index 919d4bd5e..bf7776c8c 100644 --- a/docs/upgrading.md +++ b/docs/upgrading.md @@ -8,7 +8,7 @@ To update the deploy step (this is updated less frequently): ```shell cd ~/dokku -git pull origin master +git pull --tags origin master sudo make install ```