Files
MicroPythonOS/scripts/cleanup_pyc.sh
T
Thomas Farstrike 1bfcd3a618 Cleanup __pycache__ directories
To prevent polluting the freezefs etc.
2026-01-26 14:49:45 +01:00

3 lines
121 B
Bash
Executable File

find internal_filesystem/ -iname "*.pyc" -exec rm {} \;
find internal_filesystem/ -iname "__pycache__" -exec rmdir {} \;