From 450bd1226e75d14279b01a34c36557db9cc0cad1 Mon Sep 17 00:00:00 2001 From: Malachi Soord Date: Thu, 16 Mar 2023 21:23:22 +0100 Subject: [PATCH] Tidy --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index dc9530a..68dc0c5 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,6 @@ .PHONY: build -PROJECT?=github.com/edgebox-iot/edgeboxctl - +PROJECT ?= github.com/edgebox-iot/edgeboxctl RELEASE ?= dev COMMIT := $(shell git rev-parse --short HEAD) BUILD_DATE := $(shell date -u '+%Y-%m-%d_%H:%M:%S') @@ -20,7 +19,7 @@ build-prod: build-cloud: GOOS=linux GOARCH=amd64 RELEASE=cloud make build -build +build: @echo "Building ${GOOS}-${GOARCH}" GOOS=${GOOS} GOARCH=${GOARCH} go build \ -trimpath -ldflags "-s -w -X ${PROJECT}/internal/diagnostics.Version=${RELEASE} \