We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
__pycache__
1 parent 3c89363 commit 9afdf22Copy full SHA for 9afdf22
build_scripts/windows/scripts/build.cmd
@@ -205,9 +205,9 @@ for /f %%f in ('dir /b /s *.pyc') do (
205
)
206
popd
207
208
-REM Remove __pycache__
+REM Remove empty __pycache__ directories because .pyc files are already moved to parent directories
209
echo remove pycache
210
-for /d /r %BUILDING_DIR%\Lib\site-packages\pip %%d in (__pycache__) do (
+for /d /r %BUILDING_DIR%\Lib\site-packages\ %%d in (__pycache__) do (
211
if exist %%d rmdir /s /q "%%d"
212
213
0 commit comments