haraka 0.2.28__py3-none-any.whl → 0.2.29__py3-none-any.whl
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/post_gen/service/fileOps/purge.py +4 -4
- {haraka-0.2.28.dist-info → haraka-0.2.29.dist-info}/METADATA +1 -1
- {haraka-0.2.28.dist-info → haraka-0.2.29.dist-info}/RECORD +5 -5
- {haraka-0.2.28.dist-info → haraka-0.2.29.dist-info}/WHEEL +0 -0
- {haraka-0.2.28.dist-info → haraka-0.2.29.dist-info}/top_level.txt +0 -0
@@ -95,7 +95,7 @@ class ResourcePurger:
|
|
95
95
|
else:
|
96
96
|
self._log.debug(f"Found {len(all_paths)} paths under {root})")
|
97
97
|
|
98
|
-
matches, non_matches = [], []
|
98
|
+
matches, non_matches, directories_skipped = [], [], []
|
99
99
|
for path in all_paths:
|
100
100
|
self._log.debug(f"\nScanning path: {path}")
|
101
101
|
rel = path.relative_to(root).as_posix()
|
@@ -109,11 +109,11 @@ class ResourcePurger:
|
|
109
109
|
|
110
110
|
# Non-matching paths: collect and delete
|
111
111
|
self._log.debug(f"❌ DELETE: Path does not match keep patterns: {rel}")
|
112
|
-
non_matches.append(path)
|
113
112
|
if path.is_dir():
|
114
|
-
|
115
|
-
self._log.debug(f"
|
113
|
+
directories_skipped.append(path)
|
114
|
+
self._log.debug(f"⏭️ SKIPPING DELETE: Path is a directory: {path}")
|
116
115
|
else:
|
116
|
+
non_matches.append(path)
|
117
117
|
self._f.remove_file(path)
|
118
118
|
self._log.debug(f"Deleted file: {path}")
|
119
119
|
|
@@ -17,7 +17,7 @@ haraka/post_gen/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
17
17
|
haraka/post_gen/service/command.py,sha256=yvEzW9rMSXWeQ_2DXuQNtGH6sRuZnK6viMud-amFQXw,2348
|
18
18
|
haraka/post_gen/service/fileOps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
19
|
haraka/post_gen/service/fileOps/files.py,sha256=Jm_0bhvVnNqSPGKQ2RnMpx8JLV74M-IXMmwly9fpmVw,3020
|
20
|
-
haraka/post_gen/service/fileOps/purge.py,sha256=
|
20
|
+
haraka/post_gen/service/fileOps/purge.py,sha256=rwqwA6W57f5yRmVGKwbu4CVp4ChkVBKN01Eki4dOal0,4870
|
21
21
|
haraka/post_gen/service/gitOps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
22
|
haraka/post_gen/service/gitOps/gitops.py,sha256=clWny1m9qB4yr8asba8JwqBjewlMVsJUmIOCLtAL8RI,4052
|
23
23
|
haraka/utils/__init__.py,sha256=3Cp4u0dyAGcmqes-tIr95KFsNsJx5Ji5Yzkto9546Hs,168
|
@@ -29,7 +29,7 @@ haraka/utils/manifests/go-grpc-gateway-buf.yml,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
|
|
29
29
|
haraka/utils/manifests/go-grpc-protoc.yml,sha256=OaQlfW_S_OguhW_UcpBVdqdEtUMlg-SrT4bqLhQrY7Y,936
|
30
30
|
haraka/utils/manifests/java-springboot.yml,sha256=WzcaStDgzyWmBhV2TUiYEkxHhYwydN9ww2yjZYyhSmw,929
|
31
31
|
haraka/utils/manifests/python-fastapi.yml,sha256=nhO6S9j_r-S10nM8nuw7PtR247-ePhBXHvaXg74CjWw,922
|
32
|
-
haraka-0.2.
|
33
|
-
haraka-0.2.
|
34
|
-
haraka-0.2.
|
35
|
-
haraka-0.2.
|
32
|
+
haraka-0.2.29.dist-info/METADATA,sha256=0l2YErZj6uK53j3Kon2Q5OwN-p7BukzVLwoZxeQJhyM,579
|
33
|
+
haraka-0.2.29.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
34
|
+
haraka-0.2.29.dist-info/top_level.txt,sha256=1khpwypLKWoklVd_CgFiwAfcctVSXRoRPc3BI9lyIXo,7
|
35
|
+
haraka-0.2.29.dist-info/RECORD,,
|
File without changes
|
File without changes
|