Skip to content

Commit

Permalink
FIX mina-deploy#84 foreman:start and foreman:stop - command not found
Browse files Browse the repository at this point in the history
  • Loading branch information
grigio committed Jan 29, 2013
1 parent 6939c3e commit e655330
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/mina/foreman.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@
task :start do
queue %{
echo "-----> Starting #{foreman_app} services"
#{echo_cmd %[sudo "start #{foreman_app}"]}
#{echo_cmd %[sudo start #{foreman_app}]}
}
end

desc "Stop the application services"
task :stop do
queue %{
echo "-----> Stopping #{foreman_app} services"
#{echo_cmd %[sudo "stop #{foreman_app}"]}
#{echo_cmd %[sudo stop #{foreman_app}]}
}
end

Expand Down

1 comment on commit e655330

@grigio
Copy link
Owner Author

@grigio grigio commented on e655330 Feb 17, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rstacruz could you please update the gem with this fix? bc current foreman integration is broken

Please sign in to comment.