* usr/bin/byobu-janitor:

- fix error in echo
This commit is contained in:
Dustin Kirkland 2013-08-05 09:02:09 +01:00
commit d391bacd78
2 changed files with 3 additions and 1 deletions

2
debian/changelog vendored
View file

@ -6,6 +6,8 @@ byobu (5.52) unreleased; urgency=low
usr/lib/byobu/hostname, usr/lib/byobu/include/shutil,
usr/lib/byobu/ip_address:
- work around checkbashisms false positives
* usr/bin/byobu-janitor:
- fix error in echo
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 05 Aug 2013 08:38:30 +0100

View file

@ -117,6 +117,6 @@ rm -f "$FLAG" "/var/run/screen/S-$USER/$PKG.reload-required"
if ! (grep -qs "#byobu-prompt#$" "$HOME/.bashrc") && ! [ -e "$BYOBU_CONFIG_DIR/prompt" ]; then
printf "[ -r $BYOBU_CONFIG_DIR/prompt ] && . $BYOBU_CONFIG_DIR/prompt #byobu-prompt#\n" >> "$HOME/.bashrc"
fi
[ -r "$BYOBU_CONFIG_DIR/prompt" ] || echo "[ -r ${BYOBU_PREFIX}/share/${PKG}/profiles/bashrc ] && . ${BYOBU_PREFIX}/share/${PKG}/profiles/bashrc #byobu-prompt#\n" > "$BYOBU_CONFIG_DIR/prompt"
[ -r "$BYOBU_CONFIG_DIR/prompt" ] || printf "[ -r ${BYOBU_PREFIX}/share/${PKG}/profiles/bashrc ] && . ${BYOBU_PREFIX}/share/${PKG}/profiles/bashrc #byobu-prompt#\n" > "$BYOBU_CONFIG_DIR/prompt"
# vi: syntax=sh ts=4 noexpandtab