diff options
author | David Cabo <david@calibea.com> | 2012-05-28 12:58:02 +0200 |
---|---|---|
committer | David Cabo <david@calibea.com> | 2012-05-28 12:58:02 +0200 |
commit | bc681f7270f5ddc40279981a15a0a7c7af250293 (patch) | |
tree | 5df68fe9a0a756d9821c560079271ed363bd3f18 /script/performance | |
parent | ba29eab41f51f3f489be7c5daf6d28449eab944f (diff) | |
parent | acde8a57e087d3058b8539e04c12e790866f8451 (diff) |
Merge branch 'develop' of github.com:sebbacon/alaveteli into develop
Diffstat (limited to 'script/performance')
-rwxr-xr-x | script/performance/benchmarker | 2 | ||||
-rwxr-xr-x | script/performance/profiler | 2 | ||||
-rwxr-xr-x | script/performance/request | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/script/performance/benchmarker b/script/performance/benchmarker index a94253aba..28bfceea0 100755 --- a/script/performance/benchmarker +++ b/script/performance/benchmarker @@ -1,3 +1,3 @@ #!/usr/bin/env ruby -require File.dirname(__FILE__) + '/../../config/boot.rb' +require File.expand_path(File.dirname(__FILE__) + '/../config/boot.rb') require 'commands/performance/benchmarker' diff --git a/script/performance/profiler b/script/performance/profiler index e9e5b071d..11baf44f2 100755 --- a/script/performance/profiler +++ b/script/performance/profiler @@ -1,3 +1,3 @@ #!/usr/bin/env ruby -require File.dirname(__FILE__) + '/../../config/boot.rb' +require File.expand_path(File.dirname(__FILE__) + '/../config/boot.rb') require 'commands/performance/profiler' diff --git a/script/performance/request b/script/performance/request index 658c80ef2..fff6fe660 100755 --- a/script/performance/request +++ b/script/performance/request @@ -1,3 +1,3 @@ #!/usr/bin/env ruby -require File.dirname(__FILE__) + '/../../config/boot.rb' +require File.expand_path(File.dirname(__FILE__) + '/../config/boot.rb') require 'commands/performance/request' |