diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-09-30 13:46:14 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-09-30 13:46:14 +0000 |
commit | 241b842be101064ea94943dba0ac7831a96284ad (patch) | |
tree | 735d59b2b16ad6cdd4b4f9c292a4730b133bfc9b /railties | |
parent | f98ec352b65a00eae4ec541f1c90a6020576566e (diff) | |
download | rails-241b842be101064ea94943dba0ac7831a96284ad.tar.gz rails-241b842be101064ea94943dba0ac7831a96284ad.tar.bz2 rails-241b842be101064ea94943dba0ac7831a96284ad.zip |
Update the spinner to the latest commands
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2428 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/commands/process/spinner.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/commands/process/spinner.rb b/railties/lib/commands/process/spinner.rb index 88c8e7cbd0..1573ca0740 100644 --- a/railties/lib/commands/process/spinner.rb +++ b/railties/lib/commands/process/spinner.rb @@ -14,8 +14,8 @@ end OPTIONS = { :high_interval => 5.0, :low_interval => 0.5, - :command => File.expand_path(File.dirname(__FILE__) + '/spawner'), - :daemon => false + :command => File.expand_path(RAILS_ROOT + '/script/run process spawner'), + :daemon => false } ARGV.options do |opts| |