From ff67907407eeaad1461d96fe0a305421189ec45b Mon Sep 17 00:00:00 2001 From: Urko Date: Wed, 19 Jul 2023 21:35:13 +0200 Subject: [PATCH] fix makefile missing app_name --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0c85a8e..9543d0d 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ -COVERAGE_DIR=coverage +COVERAGE_DIR := coverage BIN_DIR := ./bin MAIN := ./cmd/http/server/main.go - +APP_NAME := btc_pay_checker lint: golangci-lint run ./...