Skip to content

Commit

Permalink
Fix the issue(pypa#6126): add lockfile_path presence in pipenv check …
Browse files Browse the repository at this point in the history
…command
  • Loading branch information
nitintecg committed Apr 21, 2024
1 parent ba7584d commit 11371fc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pipenv/routines/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@ def do_check(
else:
if not quiet and not project.s.is_quiet():
click.secho("Passed!", fg="green")
# Check for lockfile exists
if not project.lockfile_exists:
return
if not quiet and not project.s.is_quiet():
if use_installed:
click.secho(
Expand Down

0 comments on commit 11371fc

Please sign in to comment.