lib/travis/tools/notification.rb in travis-1.5.6.travis.324.4 vs lib/travis/tools/notification.rb in travis-1.5.6.travis.326.4

- old
+ new

@@ -44,10 +44,10 @@ def initialize @command = "growlnotify" end def notify(title, body) - system "%s -n Travis -m %p %p >/dev/null" % [@command, body, title] + system @command, '-n', 'Travis', '-m', body, title end def available? system "which #{@command} >/dev/null 2>/dev/null" unless System.windows? end