From 8cb549e65a96a0de0297a36a1a56ae42c3b223fb Mon Sep 17 00:00:00 2001 From: Björn Mattsson Date: Thu, 19 Oct 2023 16:10:39 +0200 Subject: Fixed tagname and test in Makefile --- Makefile | 1 + scripts/bump-tag | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9d5b87a..82ce33f 100644 --- a/Makefile +++ b/Makefile @@ -9,6 +9,7 @@ update: update-git update-git: git checkout master && git reset --hard && git pull +test: schematest schematest: @fail=false ; for x in $(MXML); do test=`xmllint --xinclude --nowarning --noout --path schema --schema schema.xsd $$x 2>&1`; rc=$$?; echo $$test | sed 's/fails to validate/&/;s/validates/&/'; if [ $$rc -gt 0 ]; then fail=true ; fi; done ; if $$fail ; then exit 1 ; fi diff --git a/scripts/bump-tag b/scripts/bump-tag index 7cb8507..b85beb8 100755 --- a/scripts/bump-tag +++ b/scripts/bump-tag @@ -4,7 +4,7 @@ set -e git pull -tagpfx=${tag:="md"} +tagpfx=${tag:="conf"} last_tag=`git tag -l "${tagpfx}-*"|sort|tail -1` -- cgit v1.2.3