From e3da71d517db9afaaa663f3234f53ae7ae193ee1 Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau <tunes@google.com> Date: Thu, 27 Feb 2014 23:18:11 -0500 Subject: [PATCH] Fix auto-tagging after make bump. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1c5766d5..2f290f3f 100644 --- a/Makefile +++ b/Makefile @@ -70,7 +70,7 @@ install: archive bump: bump-version git commit -a -m "Bump version to $$(eval a=$$(cat version.lisp-expr) ; echo $$a)" - temp=$(cat version.lisp-expr); temp="${temp%\"}"; temp="${temp#\"}"; git tag $temp + temp=$$(cat version.lisp-expr); temp="$${temp%\"}"; temp="$${temp#\"}"; git tag $$temp bump-version: build/asdf.lisp ./bin/asdf-builder bump-version ${v} @@ -216,7 +216,7 @@ replace-sbcl-asdf: build/asdf.lisp replace-ccl-asdf: build/asdf.lisp ${CCL} --eval '(progn(compile-file "$<" :output-file (compile-file-pathname (format nil "~Atools/asdf.lisp" (ccl::ccl-directory))))(quit))' -WRONGFUL_TAGS := 1.37 1.1720 README RELEASE STABLE # It's not 1.37, it's 1.85! 1.37 is for the README. +WRONGFUL_TAGS := 1.37 1.1720 README RELEASE STABLE emp # It's not 1.37, it's 1.85! 1.37 is for the README. # Delete wrongful tags from local repository fix-local-git-tags: for i in ${WRONGFUL_TAGS} ; do git tag -d $$i ; done -- GitLab