diff options
-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` |