Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- #!/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
|