33 lines
871 B
Batchfile
33 lines
871 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
rem Define array elements
|
|
set "PROTO_NAMES=admin chat common bot"
|
|
|
|
rem Loop through each element in the array
|
|
for %%i in (%PROTO_NAMES%) do (
|
|
protoc --go_out=./%%i --go_opt=module=git.imall.cloud/openim/chat/pkg/protocol/%%i %%i/%%i.proto
|
|
if ERRORLEVEL 1 (
|
|
echo error processing %%i.proto
|
|
exit /b %ERRORLEVEL%
|
|
)
|
|
)
|
|
|
|
rem Generate Go-grpc code
|
|
|
|
for %%i in (%PROTO_NAMES%) do (
|
|
protoc --go-grpc_out=./%%i --go-grpc_opt=module=git.imall.cloud/openim/chat/pkg/protocol/%%i %%i/%%i.proto
|
|
if ERRORLEVEL 1 (
|
|
echo error processing %%i.proto
|
|
exit /b %ERRORLEVEL%
|
|
)
|
|
)
|
|
|
|
|
|
rem Replace "omitempty" in *.pb.go files with UTF-8 encoding
|
|
for /r %%f in (*.pb.go) do (
|
|
powershell -Command "(Get-Content -Path '%%f' -Encoding UTF8) -replace ',omitempty', '' | Set-Content -Path '%%f' -Encoding UTF8"
|
|
)
|
|
|
|
endlocal
|