use envdir .env.d
continuous-integration/drone/push Build is passing Detalles

Este commit está contenido en:
Jeffrey Paul 2020-09-22 07:52:58 -07:00
padre e3e5af8de6
commit 16fabf59a2
Se han modificado 2 ficheros con 5 adiciones y 1 borrados

2
.gitignore vendido
Ver fichero

@ -1,2 +1,4 @@
debug.log
historyposterd
.env
.env.d

Ver fichero

@ -37,7 +37,9 @@ lint:
sh -c 'test -z "$$(gofmt -l .)"'
debug: build
GOTRACEBACK=all HISTORYPOSTER_DEBUG=1 ./$(FN)d 2>&1 | tee -a debug.log
-mkdir -p ./.env.d
echo 1 > ./.env.d/HISTORYPOSTER_DEBUG
GOTRACEBACK=all envdir ./.env.d ./$(FN)d 2>&1 | tee -a debug.log
debugger:
cd cmd/historyposter && dlv debug main.go