actually use default verbosity

This commit is contained in:
Brad Warren 2024-09-30 14:44:23 -07:00
parent f186f8cee2
commit b35baaba39

View file

@ -29,7 +29,7 @@ def call_with_print(command, env):
def pip_install_with_print(args_str, env):
command = ['"', sys.executable, '" -m pip install -vvv --disable-pip-version-check ', args_str]
command = ['"', sys.executable, '" -m pip install --disable-pip-version-check ', args_str]
call_with_print(''.join(command), env=env)