您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
|
123456789101112 |
- @echo off
-
- set BasePath=%~dp0
- set APP=applet.exe
- set CfgPath=%BasePath%\etc\cfg.yml
-
- del %BasePath%\bin\%APP%
-
- go build -o %BasePath%\bin\%APP% %BasePath%\cmd\main.go && %BasePath%\bin\%APP% -c=%CfgPath%
-
-
- pause
|