mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 14:24:39 -07:00
* usr/lib/byobu/include/common: LP: #1180427
- handle zsh's interpretation of "command -v", let it fall through to use 'type' for BYOBU_TEST
This commit is contained in:
parent
5813bc83d3
commit
8881112aad
2 changed files with 4 additions and 1 deletions
3
debian/changelog
vendored
3
debian/changelog
vendored
|
@ -7,6 +7,9 @@ byobu (5.46) unreleased; urgency=low
|
||||||
[ Dustin Kirkland ]
|
[ Dustin Kirkland ]
|
||||||
* usr/share/byobu/keybindings/f-keys.tmux: LP: #1190290
|
* usr/share/byobu/keybindings/f-keys.tmux: LP: #1190290
|
||||||
- handle spaces in windows and layouts properly
|
- handle spaces in windows and layouts properly
|
||||||
|
* usr/lib/byobu/include/common: LP: #1180427
|
||||||
|
- handle zsh's interpretation of "command -v", let it fall through
|
||||||
|
to use 'type' for BYOBU_TEST
|
||||||
|
|
||||||
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 15 Jul 2013 15:52:56 -0500
|
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 15 Jul 2013 15:52:56 -0500
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ if [ -z "${BYOBU_INCLUDED_LIBS}" ]; then
|
||||||
|
|
||||||
# Find command/type/which
|
# Find command/type/which
|
||||||
for BYOBU_TEST in "command -v" "type" "which"; do
|
for BYOBU_TEST in "command -v" "type" "which"; do
|
||||||
$BYOBU_TEST >/dev/null && break
|
$BYOBU_TEST >/dev/null && break || true
|
||||||
done
|
done
|
||||||
|
|
||||||
# If the backend is already set (eg. running `byobu-tmux`), do nothing.
|
# If the backend is already set (eg. running `byobu-tmux`), do nothing.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue