From 90880719cbf1dbd86dc2283b83ff18260521eb53 Mon Sep 17 00:00:00 2001 From: Maxim Lebedev Date: Fri, 18 Feb 2022 01:25:01 +0500 Subject: [PATCH] :hammer: Removed CGO environment variable from Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 88d4989..39e8c13 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ SHELL:=/bin/bash PROJECT_NAME=indieauth VERSION=$(shell cat VERSION) -GO_BUILD_ENV=CGO_ENABLED=0 GOOS=linux GOARCH=amd64 +GO_BUILD_ENV=GOOS=linux GOARCH=amd64 GO_FILES=$(shell go list ./... | grep -v /vendor/) build: