Skip to content

Commit

Permalink
Echo Pipfile location during init
Browse files Browse the repository at this point in the history
This should help the user know what's going on in situations like #2185.
  • Loading branch information
uranusjr committed May 13, 2018
1 parent 968aea1 commit 8078d1d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pipenv/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -884,6 +884,9 @@ def do_create_virtualenv(python=None, site_packages=False):
crayons.normal(u'Creating a virtualenv for this project…', bold=True),
err=True,
)
click.echo(u'Pipfile: {1}'.format(
crayons.red(project.pipfile_location, bold=True),
), err=True)
# The user wants the virtualenv in the project.
if project.is_venv_in_project():
cmd = [
Expand Down

0 comments on commit 8078d1d

Please sign in to comment.