diff options
author | Björn Mattsson <bjorn@sunet.se> | 2023-10-19 16:10:39 +0200 |
---|---|---|
committer | Björn Mattsson <bjorn@sunet.se> | 2023-10-19 16:10:39 +0200 |
commit | 8cb549e65a96a0de0297a36a1a56ae42c3b223fb (patch) | |
tree | beadb5de254f625d70b7e03164785d7f5c423487 | |
parent | af3487b9c4a9b630d88b55c2bcc4bedf257cab4a (diff) |
Fixed tagname and test in Makefileconf-2023-10-19-v01
-rw-r--r-- | Makefile | 1 | ||||
-rwxr-xr-x | scripts/bump-tag | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -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/[1;31m&[0m/;s/validates/[1;32m&[0m/'; 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` |