🔨 Removed CGO environment variable from Makefile

This commit is contained in:
Maxim Lebedev 2022-02-18 01:25:01 +05:00
parent 2221ece5cf
commit 90880719cb
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5
1 changed files with 1 additions and 1 deletions

View File

@ -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: