Preserve OLDPWD

This commit is contained in:
Sheldon Hearn 2015-07-23 11:24:30 +02:00
parent b678b9828c
commit c800a1c68a

View file

@ -53,13 +53,15 @@ if [ "$ANSIBLE_HOME" != "$PWD" ] ; then
else else
current_dir="$ANSIBLE_HOME" current_dir="$ANSIBLE_HOME"
fi fi
cd "$ANSIBLE_HOME" (
if [ "$verbosity" = silent ] ; then cd "$ANSIBLE_HOME"
gen_egg_info > /dev/null 2>&1 if [ "$verbosity" = silent ] ; then
else gen_egg_info > /dev/null 2>&1
gen_egg_info else
fi gen_egg_info
cd "$current_dir" fi
cd "$current_dir"
)
if [ "$verbosity" != silent ] ; then if [ "$verbosity" != silent ] ; then
cat <<- EOF cat <<- EOF