diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-04-11 06:51:41 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-04-11 06:51:41 +0000 |
commit | 25aa4d4fa046346cc2920c083034638dced577fa (patch) | |
tree | edb729123276fa82d821f9d6af9e3bc4317d7955 /lib | |
parent | 064e8476e8547d66736165f2114cceae3170e064 (diff) | |
download | redmine-25aa4d4fa046346cc2920c083034638dced577fa.tar.gz redmine-25aa4d4fa046346cc2920c083034638dced577fa.zip |
scm: cvs: add -q option at rlog.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5397 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r-- | lib/redmine/scm/adapters/cvs_adapter.rb | 2 |
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 b32d2cd8f..1785cec03 100644 --- a/lib/redmine/scm/adapters/cvs_adapter.rb +++ b/lib/redmine/scm/adapters/cvs_adapter.rb @@ -159,7 +159,7 @@ module Redmine logger.debug "<cvs> revisions path:" + "'#{path}',identifier_from #{identifier_from}, identifier_to #{identifier_to}" path_with_project = "#{url}#{with_leading_slash(path)}" - cmd_args = %w|rlog| + cmd_args = %w|-q rlog| cmd_args << "-d" << ">#{time_to_cvstime_rlog(identifier_from)}" if identifier_from cmd_args << path_with_project scm_cmd(*cmd_args) do |io| |