mac/windows删除本地仓库中所有的.lastUpdated

mac系统

find ~/.m2/repository -name "*.lastUpdated" -exec grep -q "Could not transfer" {} \; -print -exec rm {} \;

windows系统

cd %userprofile%\.m2\repository
for /r %i in (*.lastUpdated) do del %i
发布了43 篇原创文章 · 获赞 13 · 访问量 12万+

猜你喜欢

转载自blog.csdn.net/qq_41070393/article/details/89297347