usr/bin/byobu-launcher: return false, if byobu doesn't launch because

TERM=dumb, LP: #654608
This commit is contained in:
Dustin Kirkland 2010-10-04 12:46:59 -07:00
commit 6b2b147f8b
2 changed files with 4 additions and 2 deletions

4
debian/changelog vendored
View file

@ -1,6 +1,8 @@
byobu (3.6) unreleased; urgency=low
* UNRELEASED
[ Ryan Thompson ]
* usr/bin/byobu-launcher: return false, if byobu doesn't launch because
TERM=dumb, LP: #654608
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 15 Sep 2010 13:31:03 -0600

View file

@ -58,7 +58,7 @@ if [ ! -e "$HOME/.byobu/disable-autolaunch" ]; then
;;
dumb)
# Dumb terminal, don't launch
exit 0
false
;;
*)
exec $BYOBU_PREFIX/bin/byobu "$@"