mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-26 22:20:21 +00:00
check if folder exists before trying to cleanup
This commit is contained in:
parent
318b9ae1db
commit
965130815d
1 changed files with 6 additions and 5 deletions
11
util.py
11
util.py
|
@ -344,11 +344,12 @@ def merge_folders(path, folder, link):
|
||||||
for file in files_in_source:
|
for file in files_in_source:
|
||||||
run(['mv', os.path.join(source, file), os.path.join(target, file)])
|
run(['mv', os.path.join(source, file), os.path.join(target, file)])
|
||||||
|
|
||||||
files_in_source = set(os.listdir(source))
|
if os.path.exists(source):
|
||||||
if files_in_source:
|
files_in_source = set(os.listdir(source))
|
||||||
manually_merge_folders(source, target)
|
if files_in_source:
|
||||||
else:
|
manually_merge_folders(source, target)
|
||||||
run(['rm', '-R', source])
|
else:
|
||||||
|
run(['rm', '-R', source])
|
||||||
|
|
||||||
|
|
||||||
def cleanup_archive(path, links):
|
def cleanup_archive(path, links):
|
||||||
|
|
Loading…
Reference in a new issue