12 lines
150 B
Batchfile
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
|
|
)
|