Skip to content
Snippets Groups Projects
Commit 389cbfe6 authored by Yuya Nishihara's avatar Yuya Nishihara
Browse files

hghave: fix 'rmcwd' to ensure temporary directory is removed

On platforms where cwd can't be removed, it should try rmdir() after chdir
to the original cwd.
parent cac4ca03
No related branches found
No related tags found
No related merge requests found
......@@ -360,6 +360,11 @@
return False
finally:
os.chdir(ocwd)
# clean up temp dir on platforms where cwd can't be removed
try:
os.rmdir(temp)
except OSError:
pass
@check("tla", "GNU Arch tla client")
def has_tla():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment