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.
This commit is contained in:
Mirko Stocker
2015-01-16 11:25:20 +01:00
parent 31c6444dae
commit cb6213adee

View File

@@ -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
```