Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- #!/bin/bash
- APP=applet
- BasePath=$(dirname $(readlink -f $0))
- CfgPath=$BasePath/etc/cfg.yml
- cd $BasePath
- rm -rf $BasePath/bin/$APP
- go build -o $BasePath/bin/$APP $BasePath/main.go \
- && $BasePath/bin/$APP -c=$CfgPath
|