* usr/lib/byobu/release:

- Fix typo
This commit is contained in:
Jeffery To 2019-05-27 03:14:28 +08:00
commit 9ff72f4783
2 changed files with 3 additions and 1 deletions

2
debian/changelog vendored
View file

@ -34,6 +34,8 @@ byobu (5.128) unreleased; urgency=medium
* usr/lib/byobu/processes: * usr/lib/byobu/processes:
- Handle stderr for ps, e.g. unsupported options - Handle stderr for ps, e.g. unsupported options
- Remove unnecessary awk call; wc -l only outputs one value - Remove unnecessary awk call; wc -l only outputs one value
* usr/lib/byobu/release:
- Fix typo
* usr/share/byobu/keybindings/f-keys.tmux: * usr/share/byobu/keybindings/f-keys.tmux:
- Remove -k for new-window. In older versions of tmux, -k without - Remove -k for new-window. In older versions of tmux, -k without
-t <target-window> had no effect. In tmux 2.8, -k without -t will -t <target-window> had no effect. In tmux 2.8, -k without -t will

View file

@ -30,7 +30,7 @@ __release() {
true true
elif [ -r "/etc/os-release" ]; then elif [ -r "/etc/os-release" ]; then
# lsb_release is *really* slow; try to use /etc/os-release # lsb_release is *really* slow; try to use /etc/os-release
release=$(. /etc/os-release && echo "$VERSION_ID") RELEASE=$(. /etc/os-release && echo "$VERSION_ID")
elif [ -r "/etc/issue" ]; then elif [ -r "/etc/issue" ]; then
# next try /etc/issue first # next try /etc/issue first
local issue local issue