summaryrefslogtreecommitdiffstats
path: root/lib/tasks/testing.rake
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-02-11 15:30:45 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-02-11 15:30:45 +0000
commit6aaf5db1e622575b242b78508680bb9687937c09 (patch)
treee712187271f8e4f3e868ff182b32c2def06eab6f /lib/tasks/testing.rake
parentddaf897596663cb6d72d1aeacf902e791c052d00 (diff)
downloadredmine-6aaf5db1e622575b242b78508680bb9687937c09.tar.gz
redmine-6aaf5db1e622575b242b78508680bb9687937c09.zip
scm: change gunzip to tar -z option for scm repository setup in lib/tasks/testing.rake.
Pipe does not work on Mingw Ruby. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4806 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/tasks/testing.rake')
-rw-r--r--lib/tasks/testing.rake3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/tasks/testing.rake b/lib/tasks/testing.rake
index 1f43a1156..266dcf9ca 100644
--- a/lib/tasks/testing.rake
+++ b/lib/tasks/testing.rake
@@ -51,7 +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 "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