* usr/lib/byobu/.constants:

- fix syntax error
This commit is contained in:
Dustin Kirkland 2011-07-05 09:06:49 +01:00
commit b81c4347f0
2 changed files with 5 additions and 1 deletions

4
debian/changelog vendored
View file

@ -28,6 +28,10 @@ byobu (4.18) unreleased; urgency=low
* usr/lib/byobu/.shutil: * usr/lib/byobu/.shutil:
- update ec2 detection method - update ec2 detection method
[ James Spencer ]
* usr/lib/byobu/.constants:
- fix syntax error
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 29 Jun 2011 02:26:28 +0000 -- Dustin Kirkland <kirkland@ubuntu.com> Wed, 29 Jun 2011 02:26:28 +0000
byobu (4.17-0ubuntu1) oneiric; urgency=low byobu (4.17-0ubuntu1) oneiric; urgency=low

View file

@ -21,7 +21,7 @@
PKG="byobu" PKG="byobu"
# Support two different backends (screen/tmux) # Support two different backends (screen/tmux)
if [ -z "$BYOBU_BACKEND" ]; if [ -z "$BYOBU_BACKEND" ]; then
[ -r "/etc/byobu/backend" ] && . "/etc/byobu/backend" [ -r "/etc/byobu/backend" ] && . "/etc/byobu/backend"
[ -r "$BYOBU_CONFIG_DIR/backend" ] && . "$BYOBU_CONFIG_DIR/backend" [ -r "$BYOBU_CONFIG_DIR/backend" ] && . "$BYOBU_CONFIG_DIR/backend"
fi fi