diff --git a/debian/changelog b/debian/changelog index 5b3fbe5a..44a5deaf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,9 @@ byobu (5.128) unreleased; urgency=medium - * UNRELEASED + * usr/bin/ctail: + - Quotes are needed around "$@" to keep parameters from splitting + on spaces. + - https://github.com/dustinkirkland/byobu/pull/31 -- Dustin Kirkland Sun, 12 Aug 2018 11:37:11 -0500 diff --git a/usr/bin/ctail b/usr/bin/ctail index 054eef8a..67086157 100755 --- a/usr/bin/ctail +++ b/usr/bin/ctail @@ -20,7 +20,7 @@ # along with this program. If not, see . if which ccze >/dev/null 2>&1; then - tail -F $@ | ccze -A + tail -F "$@" | ccze -A else echo "ERROR: ccze not found, hint..." 1>&2 echo " sudo apt-get install ccze" 2>&1