Skip to content

Commit ea32a64

Browse files
author
Matt Riedemann
committed
Call sudo with -H in pip_install
Commit 7aa7699 was an incomplete cherry pick since it missed the part that added -H to sudo pip install. This is similar to what was added in change If791b9b25d6a4280dab19117004184e57e78d038. This is needed on stable/icehouse only since the change was made in Kilo originally and backported to stable/juno. This should fix grenade against stable/juno changes where the 'old' side is stable/icehouse. Change-Id: Ia52823ec2e322f78d407993010eb04adf39a242c Closes-Bug: #1463149
1 parent e842c13 commit ea32a64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

functions-common

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1356,7 +1356,7 @@ function pip_install {
13561356
CMD_PIP=$DEST/.venv/bin/pip
13571357
SUDO_PIP="env"
13581358
else
1359-
SUDO_PIP="sudo"
1359+
SUDO_PIP="sudo -H"
13601360
CMD_PIP=$(get_pip_command)
13611361
fi
13621362

0 commit comments

Comments
 (0)