From 80aac3ca425409b40caace3947d01c0a7f950075 Mon Sep 17 00:00:00 2001 From: Dustin Kirkland Date: Mon, 18 Mar 2019 21:14:12 -0500 Subject: [PATCH] * usr/bin/ctail: - Quotes are needed around "$@" to keep parameters from splitting on spaces. - https://github.com/dustinkirkland/byobu/pull/31 --- debian/changelog | 5 ++++- usr/bin/ctail | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) 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