mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-21 05:53:22 -07:00
usr/lib/byobu/rcs_cost, usr/lib/byobu/time_binary,
usr/lib/byobu/include/common, usr/lib/byobu/include/mondrian, usr/lib/byobu/include/shutil:
This commit is contained in:
parent
6cb9b6064b
commit
e4906a9328
4 changed files with 6 additions and 4 deletions
4
debian/changelog
vendored
4
debian/changelog
vendored
|
@ -23,7 +23,9 @@ byobu (5.8) unreleased; urgency=low
|
|||
* usr/lib/byobu/cpu_freq, usr/lib/byobu/cpu_temp,
|
||||
usr/lib/byobu/custom, usr/lib/byobu/date, usr/lib/byobu/disk_io,
|
||||
usr/lib/byobu/ec2_cost, usr/lib/byobu/logo, usr/lib/byobu/network,
|
||||
usr/lib/byobu/rcs_cost, usr/lib/byobu/time_binary:
|
||||
usr/lib/byobu/rcs_cost, usr/lib/byobu/time_binary,
|
||||
usr/lib/byobu/include/common, usr/lib/byobu/include/mondrian,
|
||||
usr/lib/byobu/include/shutil:
|
||||
- use printf where possible, saves some forks
|
||||
|
||||
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 30 Jan 2012 18:12:49 -0600
|
||||
|
|
|
@ -44,7 +44,7 @@ if [ -z "${BYOBU_INCLUDED_LIBS}" ]; then
|
|||
unset i
|
||||
fi
|
||||
if ! command -v "$BYOBU_BACKEND" >/dev/null; then
|
||||
echo "ERROR: $PKG won't work without tmux or screen installed" 1>&2
|
||||
printf "%s\n" "ERROR: $PKG won't work without tmux or screen installed" 1>&2
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
|
|
@ -44,7 +44,7 @@ get_random_pane() {
|
|||
r=$((RANDOM % 4))
|
||||
done
|
||||
LAST_PANE="$r"
|
||||
echo "$r"
|
||||
printf "%s\n" "$r"
|
||||
}
|
||||
|
||||
get_random_numbers() {
|
||||
|
|
|
@ -141,7 +141,7 @@ newest() {
|
|||
}
|
||||
|
||||
error() {
|
||||
echo "ERROR: " "$@" 1>&2
|
||||
printf "%s\n" "ERROR: " "$@" 1>&2
|
||||
}
|
||||
|
||||
fail() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue