广告平台(站长使用)
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

1 ay önce
123456789101112
  1. @echo off
  2. set BasePath=%~dp0
  3. set APP=applet.exe
  4. set CfgPath=%BasePath%\etc\cfg.yml
  5. del %BasePath%\bin\%APP%
  6. go build -o %BasePath%\bin\%APP% %BasePath%\cmd\main.go && %BasePath%\bin\%APP% -c=%CfgPath%
  7. pause