No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
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
|