mirror of
https://github.com/capistrano/capistrano
synced 2023-03-27 23:21:18 -04:00
Make sure the CVS module references the repository explicitly in cvs_log (closes #6260)
git-svn-id: http://svn.rubyonrails.org/rails/tools/capistrano@5777 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
3fabedf023
commit
715b5a55fa
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Make sure the CVS module references the repository explicitly in cvs_log [weyus@att.net]
|
||||
|
||||
* Remove trace messages when loading a file
|
||||
|
||||
* Cleaner error messages for authentication failures and command errors
|
||||
|
|
|
@ -117,7 +117,7 @@ module Capistrano
|
|||
end
|
||||
|
||||
def cvs_log(path,branch)
|
||||
`cd #{path || "."} && cvs -q log -N -r#{branch}`
|
||||
`cd #{path || "."} && cvs -d #{configuration.repository} -q log -N -r#{branch}`
|
||||
end
|
||||
|
||||
def cvs_local
|
||||
|
|
Loading…
Reference in a new issue