No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
12345678 |
- #!/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
|