summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-04-11 07:02:13 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-04-11 07:02:13 +0000
commit91dc3245dd21c1f58cb40ad0e298ff1e4f1016c7 (patch)
tree3e405dafccc64898e18b87860295c754d3cc16ea /lib
parentd595bed7ef116259eb40a850bcb7c57c682f3d7e (diff)
downloadredmine-91dc3245dd21c1f58cb40ad0e298ff1e4f1016c7.tar.gz
redmine-91dc3245dd21c1f58cb40ad0e298ff1e4f1016c7.zip
scm: cvs: add -q option at rls.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5399 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r--lib/redmine/scm/adapters/cvs_adapter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/scm/adapters/cvs_adapter.rb b/lib/redmine/scm/adapters/cvs_adapter.rb
index 1785cec03..0918b2861 100644
--- a/lib/redmine/scm/adapters/cvs_adapter.rb
+++ b/lib/redmine/scm/adapters/cvs_adapter.rb
@@ -99,7 +99,7 @@ module Redmine
logger.debug "<cvs> entries '#{path}' with identifier '#{identifier}'"
path_with_project="#{url}#{with_leading_slash(path)}"
entries = Entries.new
- cmd_args = %w|rls -e|
+ cmd_args = %w|-q rls -e|
cmd_args << "-D" << time_to_cvstime_rlog(identifier) if identifier
cmd_args << path_with_project
scm_cmd(*cmd_args) do |io|