From 7b45fbb127ccc50a0d751c54fa000e199b32e7fd Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Sat, 22 Sep 2007 16:38:25 -0700 Subject: [PATCH] release script: handle stricter CLI parsing for "git tag" The current version of "git tag" seems to demand that the options precede arguments; the name is an argument, but the -m option and its parameter is an option. --- misc/release | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/release b/misc/release index 27174f3bc..24deb0ca7 100755 --- a/misc/release +++ b/misc/release @@ -27,7 +27,7 @@ if [ x`cat version` != x"${version}" ]; then git update-index version git commit -m "Version ${version}" -- version fi -git tag -f "nasm-${version}" -m "NASM version ${version}" +git tag -m "NASM version ${version}" -f "nasm-${version}" cd "$WHERE" rm -rf nasm-release.*