diff options
author | Chris Ball <cjb@laptop.org> | 2009-12-23 19:50:42 -0500 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2010-04-05 13:05:53 -0400 |
commit | d9cdda6e130c30020028c1da2c31c6f4cd72dfd4 (patch) | |
tree | 57510eaa6c2291b07bba16623d55daacf749a4e9 | |
parent | 033be8f064bc856c55a37574c36600edca1277da (diff) | |
download | etherpad-d9cdda6e130c30020028c1da2c31c6f4cd72dfd4.tar.gz etherpad-d9cdda6e130c30020028c1da2c31c6f4cd72dfd4.tar.xz etherpad-d9cdda6e130c30020028c1da2c31c6f4cd72dfd4.zip |
Silence `which growlnotify` output
-rwxr-xr-x | etherpad/bin/rebuildjar.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etherpad/bin/rebuildjar.sh b/etherpad/bin/rebuildjar.sh index e733d6f..61f180f 100755 --- a/etherpad/bin/rebuildjar.sh +++ b/etherpad/bin/rebuildjar.sh @@ -32,7 +32,7 @@ if [ -z "$JAR" ]; then fi function notify { - if [ ! -z `which growlnotify` ]; then + if [ ! -z $(which growlnotify 2>/dev/null) ]; then echo $0 finished | growlnotify fi } |