Output no update message as comments.

This commit is contained in:
Javan Makhmali 2011-05-24 22:01:31 -04:00
parent cc6bafb37a
commit 5f7253ccc3
2 changed files with 6 additions and 2 deletions

View File

@ -2,6 +2,10 @@
* Convert most shortcuts to seconds. every :day -> every 1.day. #129 [Javan Makhmali] * Convert most shortcuts to seconds. every :day -> every 1.day. #129 [Javan Makhmali]
* Allow commas in raw cron syntax. #130 [Marco Bergantin, Javan Makhmali]
* Output no update message as comments. #135 [Javan Makhmali]
### 0.6.7 / March 23rd, 2011 ### 0.6.7 / March 23rd, 2011

View File

@ -39,8 +39,8 @@ module Whenever
write_crontab(whenever_cron) write_crontab(whenever_cron)
else else
puts Whenever.cron(@options) puts Whenever.cron(@options)
puts "[message] Above is your schedule file converted to cron syntax; your crontab file was not updated." puts "## [message] Above is your schedule file converted to cron syntax; your crontab file was not updated."
puts "[message] Run `whenever --help' for more options." puts "## [message] Run `whenever --help' for more options."
exit(0) exit(0)
end end
end end