diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-09-22 16:38:25 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-09-22 16:38:25 -0700 |
commit | 7b45fbb127ccc50a0d751c54fa000e199b32e7fd (patch) | |
tree | 52a449e30f94e95fad8d05a2922bda830f154cc3 /misc | |
parent | 9b8f0ad113f6f7b420f1ac500dbd557dab33953f (diff) | |
download | nasm-7b45fbb127ccc50a0d751c54fa000e199b32e7fd.tar.gz nasm-7b45fbb127ccc50a0d751c54fa000e199b32e7fd.tar.bz2 nasm-7b45fbb127ccc50a0d751c54fa000e199b32e7fd.zip |
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.
Diffstat (limited to 'misc')
-rwxr-xr-x | misc/release | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/release b/misc/release index 27174f3..24deb0c 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.* |