a
This commit is contained in:
parent
15e3d10d0b
commit
e000ba6dd8
2 changed files with 1 additions and 2 deletions
|
@ -89,7 +89,7 @@ class PipenvOperation(object):
|
||||||
else:
|
else:
|
||||||
command = f"pipenv install"
|
command = f"pipenv install"
|
||||||
try:
|
try:
|
||||||
output = subprocess.check_output(command.split(), cwd=path, env={**os.environ, "PIP_INSTALL_OPTION": "-- --jobs=8"})
|
output = subprocess.check_output(command.split(), cwd=path, env={**os.environ, "PIP_INSTALL_OPTION": "--jobs=8"})
|
||||||
except subprocess.CalledProcessError as e:
|
except subprocess.CalledProcessError as e:
|
||||||
return Result(e, ResultType.failure, inspect.currentframe().f_code.co_name)
|
return Result(e, ResultType.failure, inspect.currentframe().f_code.co_name)
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 9aeb05987bd1b84e7ac851ce8b84f31647e436bd
|
|
Loading…
Reference in a new issue