清理下载失败的 maven 依赖文件

Windows 脚本

chcp 65001
set REPOSITORY_PATH=D:\Maven\mavenStore
rem 正在搜索...
for /f "delims=" %%i in ('dir /b /s "%REPOSITORY_PATH%\*lastUpdated*"') do (
    del /s /q %%i
)
rem 搜索完毕
pause