Reverted a line in package.py to its previous state.

This commit is contained in:
Ryan Kraus 2015-09-05 04:53:44 -04:00
parent 34c4bb585a
commit a097e9caf2

View File

@ -19,8 +19,7 @@ def install_package(package, upgrade=True, target=None):
if upgrade:
args.append('--upgrade')
if target:
target = os.path.abspath(target)
args += ['--target', target]
args += ['--target', os.path.abspath(target)]
with INSTALL_LOCK:
if check_package_exists(package, target):