Skip to content

Instantly share code, notes, and snippets.

@z-lite
Created September 25, 2017 10:29
Show Gist options
  • Save z-lite/55fba56f069d344bd38fd6565b1c9973 to your computer and use it in GitHub Desktop.
Save z-lite/55fba56f069d344bd38fd6565b1c9973 to your computer and use it in GitHub Desktop.
@echo off
set "pwd=%cd%"
cd ../../..
SETLOCAL enabledelayedexpansion
for /r %pwd% %%i in (*.proto) do (
set "str=%%i"
set "str2=!str:%cd%\=!"
echo !str2!
protoc.exe -I. --go_out=plugins=micro:. !str2!
)
endlocal
cd %pwd%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment