* usr/bin/ctail:

- Quotes are needed around "$@" to keep parameters from splitting
    on spaces.
  - https://github.com/dustinkirkland/byobu/pull/31
This commit is contained in:
Dustin Kirkland 2019-03-18 21:14:12 -05:00
commit 80aac3ca42
2 changed files with 5 additions and 2 deletions

5
debian/changelog vendored
View file

@ -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 <kirkland@ubuntu.com> Sun, 12 Aug 2018 11:37:11 -0500

View file

@ -20,7 +20,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
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