From 715b5a55fadae4adb5a640cb6c41208ca354be29 Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Sun, 24 Dec 2006 02:31:38 +0000 Subject: [PATCH] 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 --- CHANGELOG | 2 ++ lib/capistrano/scm/cvs.rb | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 9497dd6e..900cebb5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 diff --git a/lib/capistrano/scm/cvs.rb b/lib/capistrano/scm/cvs.rb index 7353667d..21ba1845 100644 --- a/lib/capistrano/scm/cvs.rb +++ b/lib/capistrano/scm/cvs.rb @@ -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