Call sudo /w -H in install_pip.sh as well

We updated other usage of sudo to pass -H when installing pip things,
to avoid creating a .cache directory in $STACK_USER's $HOME that is
owned by root. get-pip.py also ends up creating a ~/.cache, so we
need to update sudo usage there as well.

Closes-bug: #1405626
Related-bug: #1405732

Change-Id: If791b9b25d6a4280dab19117004184e57e78d038
This commit is contained in:
Adam Gandelman 2014-12-27 14:01:00 -08:00
parent fe2f986816
commit 130efefe6c
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ function install_get_pip {
curl -o $LOCAL_PIP $PIP_GET_PIP_URL || \
die $LINENO "Download of get-pip.py failed"
fi
sudo -E python $LOCAL_PIP
sudo -H -E python $LOCAL_PIP
}