From 485b78806bf288e68eae9988e2e9342df8d74959 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 2 Feb 2016 16:32:36 -0500 Subject: app-shells/bash: bashrc: quote the output of dircolors #572582#8 The output of dircolors generally shouldn't be problematic even when it's unquoted (as it tends to be a long dense string w/out whitespace), but add quotes anyways just to be safe. Reported-by: konsolebox@gmail.com --- app-shells/bash/files/bashrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app-shells') diff --git a/app-shells/bash/files/bashrc b/app-shells/bash/files/bashrc index ed46b7d7e38c..c5b449bf837a 100644 --- a/app-shells/bash/files/bashrc +++ b/app-shells/bash/files/bashrc @@ -68,9 +68,9 @@ if ${use_color} ; then # Enable colors for ls, etc. Prefer ~/.dir_colors #64489 if type -P dircolors >/dev/null ; then if [[ -f ~/.dir_colors ]] ; then - eval $(dircolors -b ~/.dir_colors) + eval "$(dircolors -b ~/.dir_colors)" elif [[ -f /etc/DIR_COLORS ]] ; then - eval $(dircolors -b /etc/DIR_COLORS) + eval "$(dircolors -b /etc/DIR_COLORS)" fi fi else -- cgit v1.2.3-65-gdbad