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

- old
+ new

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