haraka 0.2.24__tar.gz → 0.2.26__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {haraka-0.2.24 → haraka-0.2.26}/PKG-INFO +1 -1
- {haraka-0.2.24 → haraka-0.2.26}/haraka/post_gen/service/fileOps/purge.py +7 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka.egg-info/PKG-INFO +1 -1
- {haraka-0.2.24 → haraka-0.2.26}/pyproject.toml +1 -1
- {haraka-0.2.24 → haraka-0.2.26}/MANIFEST.in +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/__init__.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/art/__init__.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/art/ascii/__init__.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/art/ascii/assets.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/art/ascii/frame/__init__.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/art/ascii/frame/border.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/art/ascii/frame/framer.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/art/ascii/frame/width_utils.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/art/create.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/post_gen/__init__.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/post_gen/config/__init__.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/post_gen/config/config.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/post_gen/resources/__init__.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/post_gen/resources/assets.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/post_gen/runner.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/post_gen/service/__init__.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/post_gen/service/command.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/post_gen/service/fileOps/__init__.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/post_gen/service/fileOps/files.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/post_gen/service/gitOps/__init__.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/post_gen/service/gitOps/gitops.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/utils/__init__.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/utils/common/__init__.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/utils/common/utils.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/utils/logging/__init__.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/utils/logging/log_util.py +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/utils/manifests/go-grpc-gateway-buf.yml +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/utils/manifests/go-grpc-protoc.yml +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/utils/manifests/java-springboot.yml +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka/utils/manifests/python-fastapi.yml +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka.egg-info/SOURCES.txt +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka.egg-info/dependency_links.txt +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/haraka.egg-info/top_level.txt +0 -0
- {haraka-0.2.24 → haraka-0.2.26}/setup.cfg +0 -0
@@ -87,6 +87,13 @@ class ResourcePurger:
|
|
87
87
|
non_matches = []
|
88
88
|
|
89
89
|
# Walk the project tree to inspect all paths
|
90
|
+
all_paths = list(root.rglob("*"))
|
91
|
+
self._log.debug(f"📋 All paths under {root} (total {len(all_paths)}):")
|
92
|
+
for p in all_paths:
|
93
|
+
# log relative paths so they match what spec.match_file() sees
|
94
|
+
rel = p.relative_to(root)
|
95
|
+
self._log.debug(" {rel}")
|
96
|
+
|
90
97
|
for path in root.rglob("*"):
|
91
98
|
self._log.debug(f"\nScanning path: {path}")
|
92
99
|
rel = path.relative_to(root).as_posix()
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|