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.
|
123456789 |
- #!/bin/bash
-
- APP=task
- BasePath=$(dirname $(readlink -f $0))
- CfgPath=$BasePath/etc/task.yml
- cd $BasePath
- rm -rf $BasePath/bin/$APP
- go build -o $BasePath/bin/$APP $BasePath/cmd/$APP/main.go \
- && $BasePath/bin/$APP -c=$CfgPath
|