From 98f6482ec7eb603b17e5a99fb92d28c17fcf61e9 Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 4 Sep 2017 17:15:13 +0200 Subject: Make release helper more robust * check for bumpversion and error out if missing * drop bumpversion dependency from .deb Change-Id: Ide04d4c1ba20426bdf9531e25b462eda9418858a Related: OS#1861 --- osmo-release.mk | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'osmo-release.mk') diff --git a/osmo-release.mk b/osmo-release.mk index 03eb3cbe..40eb121b 100644 --- a/osmo-release.mk +++ b/osmo-release.mk @@ -2,6 +2,7 @@ ifndef REL REL := patch endif +BUMPVER := $(shell bumpversion) NEW_VER := $(shell bumpversion --list --current-version $(VERSION) $(REL) --allow-dirty | awk -F '=' '{ print $$2 }') LIBVERS := $(shell git grep -n LIBVERSION | grep '=' | grep am | grep -v LDFLAGS) MAKEMOD := $(shell git diff -GLIBVERSION --stat | grep Makefile.am) @@ -9,6 +10,10 @@ ISODATE := $(shell date -I) release: +ifeq ($(BUMPVER),) + @$(error Unable to find 'bumpversion' command.) +endif + ifeq ($(NEW_VER),) @$(error Please fix versioning to match http://semver.org/ spec (current is $(VERSION)) before proceeding.) endif -- cgit v1.2.3