Ver a proveniência

Disable prompts on password-protected repos

tags/v1.0
JustAnotherArchivist há 1 ano
ascendente
cometimento
42e420ad0d
1 ficheiros alterados com 1 adições e 1 eliminações
  1. +1
    -1
      codearchiver/modules/git.py

+ 1
- 1
codearchiver/modules/git.py Ver ficheiro

@@ -44,7 +44,7 @@ class Git(codearchiver.core.Module):
raise FileExistsError(f'{bundle!r} already exists')

logger.info(f'Cloning {self._url} into {directory}')
codearchiver.subprocess.run_with_log(['git', 'clone', '--verbose', '--mirror', self._url, directory])
codearchiver.subprocess.run_with_log(['git', 'clone', '--verbose', '--mirror', self._url, directory], env = {**os.environ, 'GIT_TERMINAL_PROMPT': '0'})

if self._extraBranches:
for branch, commit in self._extraBranches.items():


Carregando…
Cancelar
Guardar