mirror of
https://github.com/certbot/certbot.git
synced 2026-06-13 10:40:10 -04:00
Remove quiet flag from pip invocations.
This commit is contained in:
parent
5073090a20
commit
e05427e06e
2 changed files with 3 additions and 3 deletions
|
|
@ -23,7 +23,7 @@ def call_with_print(command, cwd=None):
|
|||
|
||||
def main(args):
|
||||
if os.environ.get('CERTBOT_NO_PIN') == '1':
|
||||
command = [sys.executable, '-m', 'pip', '-q', '-e']
|
||||
command = [sys.executable, '-m', 'pip', '-e']
|
||||
else:
|
||||
script_dir = os.path.dirname(os.path.abspath(__file__))
|
||||
command = [sys.executable, os.path.join(script_dir, 'pip_install_editable.py')]
|
||||
|
|
|
|||
|
|
@ -83,10 +83,10 @@ def main(args):
|
|||
|
||||
merge_requirements(tools_path, test_constraints, all_constraints)
|
||||
if requirements:
|
||||
call_with_print('"{0}" -m pip install -q --constraint "{1}" --requirement "{2}"'
|
||||
call_with_print('"{0}" -m pip install --constraint "{1}" --requirement "{2}"'
|
||||
.format(sys.executable, all_constraints, requirements))
|
||||
|
||||
call_with_print('"{0}" -m pip install -q --constraint "{1}" {2}'
|
||||
call_with_print('"{0}" -m pip install --constraint "{1}" {2}'
|
||||
.format(sys.executable, all_constraints, ' '.join(args)))
|
||||
finally:
|
||||
shutil.rmtree(working_dir)
|
||||
|
|
|
|||
Loading…
Reference in a new issue