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.

Because I'm not very bright
  • Loading branch information
uranusjr committed May 15, 2018
1 parent 4b07aaa commit fb5c4be
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: {0}'.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 fb5c4be

Please sign in to comment.