diff --git a/changes/packaging.py b/changes/packaging.py index dc7bf8d..35caeec 100644 --- a/changes/packaging.py +++ b/changes/packaging.py @@ -12,7 +12,7 @@ def build_package(context): """Builds package distributions""" - path('dist').rmtree() + path('dist').rmtree(ignore_errors=True) build_package_command = 'python setup.py clean sdist bdist_wheel' result = shell.dry_run(build_package_command, context.dry_run)