From: Zac Medico Date: Sun, 5 Oct 2008 03:40:25 +0000 (-0000) Subject: Add missing quotes on pushd argument from previous commit. X-Git-Tag: v2.2_rc12~34 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=affa9cfae9633176a14e624dfeda209e6bc50b46;p=portage.git Add missing quotes on pushd argument from previous commit. svn path=/main/trunk/; revision=11624 --- diff --git a/bin/doins b/bin/doins index 12a48eb69..4b1bbc229 100755 --- a/bin/doins +++ b/bin/doins @@ -70,7 +70,7 @@ for x in "$@" ; do while [ -L "$x" ] ; do pushd "$(readlink "$x")" x=${PWD##*/} - pushd ${PWD%/*} + pushd "${PWD%/*}" done find "$x" -type d -exec dodir "${INSDESTTREE}/{}" \; find "$x" \( -type f -or -type l \) -print0 | _xdoins