* usr/lib/byobu/.dirs:

- fix stray directory creation
This commit is contained in:
Dustin Kirkland 2011-08-20 11:38:53 -07:00
commit 1be35d3b9f
2 changed files with 5 additions and 0 deletions

2
debian/changelog vendored
View file

@ -81,6 +81,8 @@ byobu (4.30) unreleased; urgency=low
- fix bold printing
* usr/bin/byobu-select-session:
- check exist status of session listing
* usr/lib/byobu/.dirs:
- fix stray directory creation
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 11 Aug 2011 10:31:31 -0500

View file

@ -48,4 +48,7 @@ else
# But if not, we'll use a cache directory
export BYOBU_RUN_DIR="$HOME/.cache/$PKG"
fi
# Backend cache
[ -n "$BYOBU_BACKEND" ] || BYOBU_BACKEND="screen"
[ -d "$BYOBU_RUN_DIR/cache.$BYOBU_BACKEND" ] || mkdir -p "$BYOBU_RUN_DIR/cache.$BYOBU_BACKEND"