Files
go-gin-api/scripts/handlergen.bat
T
anserme 6af343d0b1 bugs fix
修复win下环境变量错误使用的问题
2021-07-16 12:57:20 +08:00

23 lines
296 B
Batchfile

@echo off
chcp 65001
echo.
echo Regenerating handler file
echo.
go run -v .\cmd\handlergen\main.go -handler %1
if %errorlevel% == 1 (
echo.
echo failed!!!
exit 1
)
echo.
echo Formatting code
echo.
go run -v .\cmd\mfmt\main.go
if %errorlevel% == 1 (
echo.
echo failed!!!
exit 1
)
echo.
echo Done.