1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

Fixed a bug with mercurial releases caused by an undefinied variable … (#1817)

* Fixed a bug with mercurial releases caused by an undefinied variable closes #1816
* Accidentally added a tab before the your contribution line. Removing it
This commit is contained in:
godoftheds 2016-12-16 11:20:41 -05:00 committed by Matt Brictson
parent 58c14b0303
commit 8fb76ea7b9
2 changed files with 2 additions and 1 deletions

View file

@ -7,6 +7,7 @@ Reverse Chronological Order:
https://github.com/capistrano/capistrano/compare/v3.7.0...HEAD
* Your contribution here!
* Fixed a bug with mercurial deploys trying to use an undefined variable
## `3.7.0` (2016-12-10)

View file

@ -28,7 +28,7 @@ namespace :hg do
task update: :'hg:clone' do
on release_roles :all do
within repo_path do
hr.update_mirror
hg_plugin.update_mirror
end
end
end