Skip to content

Commit

Permalink
Merge pull request #3 from jbrubake/fix-pkg-install-dir
Browse files Browse the repository at this point in the history
Correctly install packages to 'pip-safe'
  • Loading branch information
dvershinin authored Sep 28, 2021
2 parents bb0263b + 3e39e74 commit 1fd62dc
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 1fd62dc

Please sign in to comment.