From 1cf38422612f5e3f77b2203f676edf3182eb3745 Mon Sep 17 00:00:00 2001 From: Dustin Kirkland Date: Thu, 16 Jun 2011 16:08:21 -0500 Subject: [PATCH] * usr/bin/byobu-launch: - fix typo, missing whitespace --- debian/changelog | 2 ++ usr/bin/byobu-launch | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index a3facd08..ce5ada2d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -33,6 +33,8 @@ byobu (4.13) unreleased; urgency=low - add vi modelines * usr/lib/byobu/hostname: - whitespace handled elsewhere + * usr/bin/byobu-launch: + - fix typo, missing whitespace -- Dustin Kirkland Thu, 16 Jun 2011 11:37:56 -0500 diff --git a/usr/bin/byobu-launch b/usr/bin/byobu-launch index 9543716d..05c37125 100755 --- a/usr/bin/byobu-launch +++ b/usr/bin/byobu-launch @@ -31,7 +31,7 @@ DATA="$HOME/.$PKG" # $HOME/.bashrc: export LC_BYOBU=0 # or edit your sshd_config, ssh_config, and set: # $HOME/.bashrc: export BYOBU_DISABLE=1 -if [ "$LC_BYOBU" != "0" ] && [ "$BYOBU_DISABLE" != "1"]; then +if [ "$LC_BYOBU" != "0" ] && [ "$BYOBU_DISABLE" != "1" ]; then case "$-" in *i*) # Attempt to merge shell history across sessions/windows (works with a few exceptions)