mirror of
https://github.com/devine-dl/devine.git
synced 2025-04-29 17:49:44 +00:00
fix(WVD): Add exists/empty checks to WVD folder dumps
This commit is contained in:
parent
f99fad8e15
commit
3b3345964a
@ -123,7 +123,15 @@ def dump(wvd_paths: list[Path], out_dir: Path) -> None:
|
|||||||
log = logging.getLogger("wvd")
|
log = logging.getLogger("wvd")
|
||||||
|
|
||||||
if wvd_paths == ():
|
if wvd_paths == ():
|
||||||
wvd_paths = list(config.directories.wvds.iterdir())
|
if not config.directories.wvds.exists():
|
||||||
|
console.log(f"[bright_blue]{config.directories.wvds.absolute()}[/] does not exist...")
|
||||||
|
wvd_paths = list(
|
||||||
|
x
|
||||||
|
for x in config.directories.wvds.iterdir()
|
||||||
|
if x.is_file() and x.suffix.lower() == ".wvd"
|
||||||
|
)
|
||||||
|
if not wvd_paths:
|
||||||
|
console.log(f"[bright_blue]{config.directories.wvds.absolute()}[/] is empty...")
|
||||||
|
|
||||||
for i, (wvd_path, out_path) in enumerate(zip(wvd_paths, (out_dir / x.stem for x in wvd_paths))):
|
for i, (wvd_path, out_path) in enumerate(zip(wvd_paths, (out_dir / x.stem for x in wvd_paths))):
|
||||||
if i > 0:
|
if i > 0:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user