summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-07-14 07:59:07 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-07-14 07:59:07 +0000
commitcbcf2bdc798ba0c17846daea277845c0e4485658 (patch)
tree4af8003a84e3753ca485fe3c648e26802a7c812b /lib
parent1c5609c9044f8646ed8d2fd4d27c9cc3cd23dfe0 (diff)
downloadredmine-cbcf2bdc798ba0c17846daea277845c0e4485658.tar.gz
redmine-cbcf2bdc798ba0c17846daea277845c0e4485658.zip
replace newline LF to CRLF at lib/tasks/testing.rake.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6269 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/testing.rake4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tasks/testing.rake b/lib/tasks/testing.rake
index 266dcf9ca..c27893405 100644
--- a/lib/tasks/testing.rake
+++ b/lib/tasks/testing.rake
@@ -51,8 +51,8 @@ namespace :test do
(supported_scms - [:subversion, :mercurial]).each do |scm|
desc "Creates a test #{scm} repository"
task scm => :create_dir do
- # system "gunzip < test/fixtures/repositories/#{scm}_repository.tar.gz | tar -xv -C tmp/test"
- system "tar -xvz -C tmp/test -f test/fixtures/repositories/#{scm}_repository.tar.gz"
+ # system "gunzip < test/fixtures/repositories/#{scm}_repository.tar.gz | tar -xv -C tmp/test"
+ system "tar -xvz -C tmp/test -f test/fixtures/repositories/#{scm}_repository.tar.gz"
end
end