Add integrations/cloud-notifications to cleanup (#16102)
Fotis Voutsas committed
Oct 3, 2023 at 13:24 UTC
cca899db4c2441939c40c3b6b358f216dcedc090
1 file changed
+3
integrations/gen_docs_integrations.py
+3
@@ -23,6 +23,9 @@ def cleanup():
23
for element in Path("exporting").glob('**/*/'):
24
if "integrations" in str(element):
25
shutil.rmtree(element)
26
+ for element in Path("integrations/cloud-notifications").glob('**/*/'):
27
+ if "integrations" in str(element):
28
+ shutil.rmtree(element)
29
30
31
def generate_category_from_name(category_fragment, category_array):