* usr/lib/byobu/.dirs:

- ensure that the cache dir gets created
This commit is contained in:
Dustin Kirkland 2011-08-16 16:12:49 -07:00
commit d05cd746f4
2 changed files with 3 additions and 1 deletions

2
debian/changelog vendored
View file

@ -62,6 +62,8 @@ byobu (4.30) unreleased; urgency=low
- fix wireless utf8 icon bug, default to utf8 for tmux - fix wireless utf8 icon bug, default to utf8 for tmux
* usr/lib/byobu/.shutil: * usr/lib/byobu/.shutil:
- fix tmux color rendering - fix tmux color rendering
* usr/lib/byobu/.dirs:
- ensure that the cache dir gets created
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 11 Aug 2011 10:31:31 -0500 -- Dustin Kirkland <kirkland@ubuntu.com> Thu, 11 Aug 2011 10:31:31 -0500

View file

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