Fix application name

This commit is contained in:
Thomas Roehl 2021-11-25 17:54:58 +01:00
parent 59ac123662
commit c6edf7aed4
2 changed files with 4 additions and 1 deletions

View File

@ -14,4 +14,4 @@ jobs:
run: make
- name: Run MetricCollector
run: ./metric-collector --once
run: make runonce

View File

@ -6,6 +6,9 @@ $(APP): metric-collector.go
make -C collectors
go build -o $(APP) metric-collector.go
runonce: $(APP)
./$(APP) --once
fmt:
go fmt collectors/*.go
go fmt sinks/*.go