Commit dba77a73 authored by Chris Lamb's avatar Chris Lamb 👀
Browse files

Fix up tag handling in the publishing script.

parent 2cc8caf3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ then
	echo
	echo "Now verify the results and run:"
	echo
	echo "  $ git push origin master && git push origin ${TAG}"
	echo "  $ git push origin master && git push origin refs/tags/${TAG}"
	echo

	while true
@@ -49,7 +49,7 @@ then

		case "${X}" in
		Y|"")
			git push origin master && git push origin ${TAG}
			git push origin master && git push origin refs/tags/${TAG}
			break
			;;
		N|n)