-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathdelcache.bat
More file actions
36 lines (29 loc) · 804 Bytes
/
delcache.bat
File metadata and controls
36 lines (29 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
@echo off
if exist dialogExecution\__pycache__\ (
del dialogExecution\__pycache__\*.* /q
rd dialogExecution\__pycache__\
)
if exist errors\__pycache__\ (
del errors\__pycache__\*.* /q
rd errors\__pycache__\
)
if exist platformSpecific\__pycache__\ (
del platformSpecific\__pycache__\*.* /q
rd platformSpecific\__pycache__\
)
if exist translations\__pycache__\ (
del translations\__pycache__\*.* /q
rd translations\__pycache__\
)
if exist uiScripts\__pycache__\ (
del uiScripts\__pycache__\*.* /q
rd uiScripts\__pycache__\
)
if exist plugins\pluginmgr\__pycache__\ (
del plugins\pluginmgr\__pycache__\*.* /q
rd plugins\pluginmgr\__pycache__\
)
if exist services\__pycache__\ (
del services\__pycache__\*.* /q
rd services\__pycache__\
)