From 711dfabcaaee2eab093cb7106a2fc7c1a8ea6979 Mon Sep 17 00:00:00 2001 From: notsatan Date: Fri, 5 Jan 2024 20:29:41 +0545 Subject: [PATCH] Minor: Remove the `STDERR` variable from Makefile This directly relates to notsatan/go-template#43, with this in place there is no longer a need to decide where to store stderr logs Signed-off-by: notsatan --- {{ cookiecutter.project_name.strip() }}/Makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/{{ cookiecutter.project_name.strip() }}/Makefile b/{{ cookiecutter.project_name.strip() }}/Makefile index a547cae..4184c68 100644 --- a/{{ cookiecutter.project_name.strip() }}/Makefile +++ b/{{ cookiecutter.project_name.strip() }}/Makefile @@ -10,10 +10,6 @@ PROJECTNAME="{{ cookiecutter.project_name.strip() }}" # List of all Go-files to be processed GOFILES=$(wildcard *.go) -# Redirecting error output to a file, acts as logs that can -# be referenced if needed -STDERR=/tmp/$(PROJECTNAME)-stderr.txt - # Docker image variables IMAGE := $(PROJECTNAME) VERSION := latest