Roman Okhrimenko | 0142a68 | 2022-03-31 14:40:48 +0300 | [diff] [blame^] | 1 | #!/usr/bin/env python |
| 2 | |
| 3 | import shutil |
| 4 | from os import remove |
| 5 | from sys import argv |
| 6 | |
| 7 | shutil.rmtree('../cppcheck') |
| 8 | shutil.rmtree('../coverity') |
| 9 | remove('../../../.gitlab-ci.yml') |
| 10 | remove('../BlinkyApp/BlinkyApp_CM4_Debug.launch') |
| 11 | remove('../MCUBootApp/MCUBootApp_CM0P_Debug.launch') |
| 12 | remove('../MCUBootApp/MCUBootApp_CYW20829_Debug.launch') |
| 13 | remove('../cy_flash_pal/flash_cyw208xx/flashmap/cyw20829_xip_swap_single_psvp.json') |
| 14 | remove('../cy_flash_pal/flash_cyw208xx/flashmap/cyw20829_xip_swap_multi2_psvp.json') |
| 15 | remove('../cy_flash_pal/flash_cyw208xx/flashmap/cyw20829_xip_overwrite_single_psvp.json') |
| 16 | remove('../cy_flash_pal/flash_cyw208xx/flashmap/cyw20829_xip_overwrite_multi2_psvp.json') |
| 17 | remove('./cppcheck-htmlreport.py') |
| 18 | remove('./rbc_policy_and_cert_revision_modify.py') |
| 19 | remove('../platforms/CYW20829/cyw20829_psvp.h') |
| 20 | remove(argv[0]) |
| 21 | |
| 22 | print('Cleanup complete') |