Commit 1663e9af380ed254c79434b3cd02a1596e722399
- Date: Sat Apr 26 10:11:25 +0000 2008
- Committer: Dag Odenhall (dag.odenhall@gmail.com)
- Author: Dag Odenhall (dag.odenhall@gmail.com)
- Commit SHA1: 1663e9af380ed254c79434b3cd02a1596e722399
- Tree SHA1: 75f726f14e66c21a0e2a5e543bc8bdde9e6853eb
That's not true, stupid!
* lib/amazing/cli/commands.rb: (cmd_stop_process)
Don't display log warning from --stop.
Commit diff
| |   |
| 15 | 15 | |
| 16 | 16 | def cmd_stop_process |
| 17 | 17 | if @options[:stop] |
| 18 | | stop_process(true) |
| 18 | stop_process(false) |
| 19 | 19 | exit |
| 20 | 20 | end |
| 21 | 21 | end |
| toggle raw diff |
--- a/lib/amazing/cli/commands.rb
+++ b/lib/amazing/cli/commands.rb
@@ -15,7 +15,7 @@ module Amazing
def cmd_stop_process
if @options[:stop]
- stop_process(true)
+ stop_process(false)
exit
end
end |