Skip to content
This repository has been archived by the owner on Sep 26, 2019. It is now read-only.

Commit

Permalink
install action fails with pip-build directory
Browse files Browse the repository at this point in the history
Bug: 1179747

stable/grizzly solution not work for folsom. So at least run all
python-pip as root

Change-Id: I66b153fb186c407279317f87cc6ecd5e76dc4c4a
  • Loading branch information
Nikita Savin committed Jul 23, 2013
1 parent 9b7e37d commit e9bf64c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion anvil/packaging/helpers/pip_helper.py
Expand Up @@ -57,7 +57,7 @@ def uncache():

def _list_installed(pip_how):
cmd = [str(pip_how)] + FREEZE_CMD
(stdout, _stderr) = sh.execute(*cmd)
(stdout, _stderr) = sh.execute(*cmd, run_as_root=True)
installed = []
for line in stdout.splitlines():
line = line.strip()
Expand Down

0 comments on commit e9bf64c

Please sign in to comment.