Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
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
|