mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-20 21:43:19 -07:00
* usr/bin/byobu-export.in:
- Use echo if the gettext command is not available
This commit is contained in:
parent
768f08712d
commit
c3d8f078c8
2 changed files with 9 additions and 1 deletions
2
debian/changelog
vendored
2
debian/changelog
vendored
|
@ -24,6 +24,8 @@ byobu (5.128) unreleased; urgency=medium
|
|||
usr/bin/byobu-janitor.in:
|
||||
- Test if $HOME/.bashrc exists before modifying it (and potentially
|
||||
creating it)
|
||||
* usr/bin/byobu-export.in:
|
||||
- Use echo if the gettext command is not available
|
||||
* usr/bin/byobu.in:
|
||||
- Use readlink if the tty command is not available
|
||||
* usr/bin/byobu-janitor.in:
|
||||
|
|
|
@ -22,7 +22,13 @@ PKG="byobu"
|
|||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="@prefix@" || export BYOBU_PREFIX
|
||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||
|
||||
gettext "
|
||||
if eval $BYOBU_TEST gettext >/dev/null 2>&1; then
|
||||
command=gettext
|
||||
else
|
||||
command=echo
|
||||
fi
|
||||
|
||||
$command "
|
||||
The byobu-export utility is now deprecated.
|
||||
|
||||
To install byobu on a system for which byobu is not packaged, or
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue