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

This commit is contained in:
Jeffrey Paul 2020-09-22 07:52:58 -07:00
rodič e3e5af8de6
revize 16fabf59a2
2 změnil soubory, kde provedl 5 přidání a 1 odebrání

2
.gitignore vendorováno
Zobrazit soubor

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

Zobrazit soubor

@ -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