diff options
author | murphy <murphy@rubychan.de> | 2006-10-15 10:03:42 +0000 |
---|---|---|
committer | murphy <murphy@rubychan.de> | 2006-10-15 10:03:42 +0000 |
commit | dd1f6c2ed2fa76d8862233494519d797e9ffb488 (patch) | |
tree | 93e959224a23d6bbd4ac629bf7c187f19e65b9bd | |
parent | e5088ab940621155554a2e9455b57614c6ff015b (diff) | |
download | coderay-dd1f6c2ed2fa76d8862233494519d797e9ffb488.tar.gz |
benchmark.rake: fixed pathname
-rw-r--r-- | rake_tasks/benchmark.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rake_tasks/benchmark.rake b/rake_tasks/benchmark.rake index c35c89d..ade4936 100644 --- a/rake_tasks/benchmark.rake +++ b/rake_tasks/benchmark.rake @@ -1,6 +1,6 @@ desc 'Do a benchmark' task :benchmark do - system 'ruby -wIlib bench\bench.rb ruby html 0' + system 'ruby -wIlib bench/bench.rb ruby html 0' end task :bench => :benchmark |