projects
/
platform
/
upstream
/
nasm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9b8f0ad
)
release script: handle stricter CLI parsing for "git tag"
author
H. Peter Anvin
<hpa@zytor.com>
Sat, 22 Sep 2007 23:38:25 +0000
(16:38 -0700)
committer
H. Peter Anvin
<hpa@zytor.com>
Sat, 22 Sep 2007 23:38:25 +0000
(16:38 -0700)
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
patch
|
blob
|
history
diff --git
a/misc/release
b/misc/release
index
27174f3
..
24deb0c
100755
(executable)
--- 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.*