Skip to content

Commit

Permalink
Merge pull request #2350 from pypa/bugfix/skip_requirements-gh-2349
Browse files Browse the repository at this point in the history
Ensure skip_requirements is set before use
  • Loading branch information
techalchemy authored Jun 14, 2018
2 parents 403aa9d + 3204bf2 commit 42f9c02
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pipenv/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1766,6 +1766,8 @@ def do_install(
# Don't search for requirements.txt files if the user provides one
if requirements or package_name or project.pipfile_exists:
skip_requirements = True
else:
skip_requirements = False
concurrent = (not sequential)
# Ensure that virtualenv is available.
ensure_project(
Expand Down

0 comments on commit 42f9c02

Please sign in to comment.