mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
Ignore cleanup errors.
This is caused by subdirectories being owned by root.
This commit is contained in:
parent
f0962035d5
commit
afc16afa1e
1 changed files with 1 additions and 1 deletions
|
|
@ -124,7 +124,7 @@ def test_dirs():
|
|||
try:
|
||||
yield join(dir, 'letsencrypt-auto'), join(dir, 'venv')
|
||||
finally:
|
||||
rmtree(dir)
|
||||
rmtree(dir, ignore_errors=True)
|
||||
|
||||
|
||||
def out_and_err(command, input=None, shell=False, env=None):
|
||||
|
|
|
|||
Loading…
Reference in a new issue