cleanup after itself.

This commit is contained in:
Matt Troutman 2024-10-02 13:52:17 -05:00
parent 522f6154d0
commit 689ed19245
No known key found for this signature in database
2 changed files with 16 additions and 1 deletions

View file

@ -1,6 +1,10 @@
import cleanup
if __name__ == '__main__':
## Clean up git repository
#Reset and remove untracked files
os.system("git reset --hard")
os.system("git clean -fdx")
cleanup.remove_ds_store_files()
cleanup.remove_setup_complete_files()
cleanup.remove_empty_folders()
cleanup.remove_empty_folders()