From 373ec84b908478e8e02d398af671fe6bfdd9e79a Mon Sep 17 00:00:00 2001 From: rdavydov <15850461+rdavydov@users.noreply.github.com> Date: Fri, 21 Oct 2022 12:57:20 +0300 Subject: [PATCH] batch file to remove __pycache__ --- DELETE_PYCACHE.bat | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 DELETE_PYCACHE.bat diff --git a/DELETE_PYCACHE.bat b/DELETE_PYCACHE.bat new file mode 100644 index 0000000..37901f4 --- /dev/null +++ b/DELETE_PYCACHE.bat @@ -0,0 +1,5 @@ +@echo off +rmdir /s /q __pycache__ +rmdir /s /q TwitchChannelPointsMiner\__pycache__ +rmdir /s /q TwitchChannelPointsMiner\classes\__pycache__ +rmdir /s /q TwitchChannelPointsMiner\classes\entities\__pycache__ \ No newline at end of file