From b3786961dee0c22af84fa980f02af349c601748f Mon Sep 17 00:00:00 2001 From: mmetc <92726601+mmetc@users.noreply.github.com> Date: Thu, 14 Apr 2022 13:51:25 +0200 Subject: [PATCH] removed RELEASE.json, embed codename in makefile (#1442) --- Makefile | 2 +- RELEASE.json | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) delete mode 100644 RELEASE.json diff --git a/Makefile b/Makefile index 6340345ad..dfb47091e 100644 --- a/Makefile +++ b/Makefile @@ -43,7 +43,7 @@ GO_VERSION_VALIDATION_ERR_MSG = Golang version ($(BUILD_GOVERSION)) is not suppo # Current versioning information from env BUILD_VERSION ?= "$(shell git describe --tags)" BUILD_GOVERSION = "$(shell go version | cut -d " " -f3 | sed -E 's/[go]+//g')" -BUILD_CODENAME = $(shell cat RELEASE.json | jq -r .CodeName) +BUILD_CODENAME = "alphaga" BUILD_TIMESTAMP = $(shell date +%F"_"%T) BUILD_TAG ?= "$(shell git rev-parse HEAD)" DEFAULT_CONFIGDIR ?= "/etc/crowdsec" diff --git a/RELEASE.json b/RELEASE.json deleted file mode 100644 index 1b6ee99c5..000000000 --- a/RELEASE.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "CodeName": "alphaga" -}