Files
go-utils/upgrade.bat
2023-10-25 15:50:55 +08:00

12 lines
150 B
Batchfile

echo off
::指定起始文件夹
set DIR="%cd%"
for /R %DIR% /d %%i in (*) do (
echo %%i
cd %%i
go get all
go mod tidy
)