diff --git a/pyproject.toml b/pyproject.toml index c2407cd..2678486 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "yandex-music-downloader" -version = "1.0.1" +version = "1.0.2" description = "Загрузчик музыки с сервиса Яндекс.Музыка" requires-python = ">=3.9" readme = "README.md" diff --git a/ymd/cli.py b/ymd/cli.py index 119261c..3a3b98b 100644 --- a/ymd/cli.py +++ b/ymd/cli.py @@ -212,7 +212,7 @@ def main(): save_path = args.dir / core.prepare_track_path(args.path_pattern, track, args.unsafe_path) if args.skip_existing and save_path.is_file(): - return + continue save_dir = save_path.parent if not save_dir.is_dir():