Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
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
|