mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 14:24:39 -07:00
* usr/lib/byobu/include/common:
- clear stderr in byobu test
This commit is contained in:
commit
c8f4c040cf
2 changed files with 7 additions and 2 deletions
5
debian/changelog
vendored
5
debian/changelog
vendored
|
@ -1,8 +1,13 @@
|
|||
byobu (5.21) unreleased; urgency=low
|
||||
|
||||
[ Dustin Kirkland ]
|
||||
* usr/lib/byobu/users:
|
||||
- clear cache on 0 users
|
||||
|
||||
[ Daniel Hahler ]
|
||||
* usr/lib/byobu/include/common:
|
||||
- clear stderr in byobu test
|
||||
|
||||
-- Dustin Kirkland <kirkland@ubuntu.com> Sun, 24 Jun 2012 16:25:33 -0500
|
||||
|
||||
byobu (5.20-0ubuntu1) quantal; urgency=low
|
||||
|
|
|
@ -23,9 +23,9 @@ if [ -z "${BYOBU_INCLUDED_LIBS}" ]; then
|
|||
. "${BYOBU_PREFIX}/lib/${PKG}/include/dirs"
|
||||
|
||||
# Find command/type/which
|
||||
if command -v; then
|
||||
if command -v 2>/dev/null; then
|
||||
BYOBU_TEST="command -v"
|
||||
elif type; then
|
||||
elif type 2>/dev/null; then
|
||||
BYOBU_TEST="type"
|
||||
else
|
||||
BYOBU_TEST="which"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue