From 87de0259e572ff336ab74b297997bc9d774c346b Mon Sep 17 00:00:00 2001 From: filip Date: Wed, 28 Feb 2024 00:34:56 +0100 Subject: [PATCH] Fix makefile --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index d3d0fce9c1..6b1d2ae4d4 100644 --- a/Makefile +++ b/Makefile @@ -42,10 +42,10 @@ build: check-go check-git $(eval BRANCH = $(shell git rev-parse --abbrev-ref HEAD | tr -d '\040\011\012\015\n')) $(eval TIME = $(shell date)) go build -o blade -ldflags="\ - -X 'github.com/Ethernal-Tech/blade/versioning.Version=$(VERSION)' \ - -X 'github.com/Ethernal-Tech/blade/versioning.Commit=$(COMMIT_HASH)'\ - -X 'github.com/Ethernal-Tech/blade/versioning.Branch=$(BRANCH)'\ - -X 'github.com/Ethernal-Tech/blade/versioning.BuildTime=$(TIME)'" \ + -X 'github.com/0xPolygon/polygon-edge/versioning.Version=$(VERSION)' \ + -X 'github.com/0xPolygon/polygon-edge/versioning.Commit=$(COMMIT_HASH)'\ + -X 'github.com/0xPolygon/polygon-edge/versioning.Branch=$(BRANCH)'\ + -X 'github.com/0xPolygon/polygon-edge/versioning.BuildTime=$(TIME)'" \ main.go .PHONY: lint