summaryrefslogtreecommitdiffstats
path: root/bin/bashrc-functions.sh
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2012-09-16 18:36:08 -0700
committerZac Medico <zmedico@gentoo.org>2012-09-16 18:36:08 -0700
commit8bdba93c1a5d3b7500dec73a12fa9c40b43b9e2a (patch)
tree8182a691c2235b4158c3ebe8f47bb86796713ec0 /bin/bashrc-functions.sh
parent087fc47e7c98f1c49ab5b873f3b476f8c1e00a17 (diff)
downloadportage-8bdba93c1a5d3b7500dec73a12fa9c40b43b9e2a.tar.gz
portage-8bdba93c1a5d3b7500dec73a12fa9c40b43b9e2a.tar.bz2
portage-8bdba93c1a5d3b7500dec73a12fa9c40b43b9e2a.zip
__strip_duplicate_slashes: quote paths
Diffstat (limited to 'bin/bashrc-functions.sh')
-rw-r--r--bin/bashrc-functions.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bashrc-functions.sh b/bin/bashrc-functions.sh
index 30a7a8e1e..f1b6bb538 100644
--- a/bin/bashrc-functions.sh
+++ b/bin/bashrc-functions.sh
@@ -29,7 +29,7 @@ __strip_duplicate_slashes() {
while [[ ${removed} == *//* ]] ; do
removed=${removed//\/\///}
done
- echo ${removed}
+ echo "${removed}"
fi
}