diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2012-05-02 09:32:29 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-05-02 09:32:29 +0100 |
commit | 771b0f839458408a38b78e790fdd610251cec815 (patch) | |
tree | af3802e34b8bd0cef684a34e886141381f387c29 /script/performance | |
parent | 481e5d6c9d82cfc0cace474674b01376bc514417 (diff) | |
parent | c402c9aa3f96300eb1165364e6a0f1a50642297f (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' |