From fe12d487d095007863b4c99d284067d44f901603 Mon Sep 17 00:00:00 2001 From: Maxim Lebedev Date: Mon, 16 Jan 2023 17:17:57 +0600 Subject: [PATCH] :fire: Removed useless commands in Makefile --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile b/Makefile index 03302bb..22bd995 100644 --- a/Makefile +++ b/Makefile @@ -17,11 +17,9 @@ all: main.go $(GO) build -v $(GOFLAGS) -o $(EXECUTABLE) clean: ## Delete all files in the current directory that are normally created by building the program - -rm $(srcdir)/internal/testing/httptest/{cert,key}.pem $(GO) clean check: ## Perform self-tests - $(GO) generate $(srcdir)/internal/testing/httptest/... $(GO) test -v -cover -failfast -short -shuffle=on $(GOFLAGS) $(srcdir)/... .PHONY: help