mirror of
https://github.com/netwide-assembler/nasm
synced 2026-08-26 16:23:04 -04:00
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.
This commit is contained in:
parent
9b8f0ad113
commit
7b45fbb127
1 changed files with 1 additions and 1 deletions
|
|
@ -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.*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue