From a21d06c63bd36d1dcb208b2bf21b836097f51cf2 Mon Sep 17 00:00:00 2001 From: James Spencer Date: Sun, 3 Jul 2011 08:27:44 +0100 Subject: [PATCH] Correct if...fi syntax. --- usr/lib/byobu/.constants | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/byobu/.constants b/usr/lib/byobu/.constants index 41904aff..83651400 100755 --- a/usr/lib/byobu/.constants +++ b/usr/lib/byobu/.constants @@ -21,7 +21,7 @@ PKG="byobu" # Support two different backends (screen/tmux) -if [ -z "$BYOBU_BACKEND" ]; +if [ -z "$BYOBU_BACKEND" ]; then [ -r "/etc/byobu/backend" ] && . "/etc/byobu/backend" [ -r "$BYOBU_CONFIG_DIR/backend" ] && . "$BYOBU_CONFIG_DIR/backend" fi