a
This commit is contained in:
parent
15b3237d4c
commit
8fe4e5e8a5
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ class VirtualenvOperation(object):
|
||||||
if package_name:
|
if package_name:
|
||||||
command = f"pip install {package_name}"
|
command = f"pip install {package_name}"
|
||||||
else:
|
else:
|
||||||
subprocess.check_output("pipenv run pip freeze > requirements.txt".split())
|
subprocess.check_output("pipenv run pip freeze > requirements.txt".split(), cwd=path)
|
||||||
command = f"pip install -r requirements.txt"
|
command = f"pip install -r requirements.txt"
|
||||||
try:
|
try:
|
||||||
output = subprocess.check_output(command.split(), cwd=path)
|
output = subprocess.check_output(command.split(), cwd=path)
|
||||||
|
|
Loading…
Reference in a new issue