Skip to content

Commit

Permalink
Correctly install packages to 'pip-safe'
Browse files Browse the repository at this point in the history
The README states pip-safe would install packages to 'pip-safe' but
they were actually being installed to 'safe-pip'
  • Loading branch information
jbrubake committed Sep 28, 2021
1 parent bb0263b commit 3e39e74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pip_safe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def get_venvs_dir(system_wide=False):
if not system_wide:
return os.path.join(os.path.expanduser('~'), '.virtualenvs')
else:
return '/opt/safe-pip'
return '/opt/pip-safe'


def get_bin_dir(system_wide=False):
Expand Down

0 comments on commit 3e39e74

Please sign in to comment.