mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-27 08:10:07 +08:00
ce7aaf7b63
Script to tag the tree for release. Once this tag is pushed (git push; git push --tags) the build robot will pick it up and produce the builds.
16 lines
208 B
Bash
Executable File
16 lines
208 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Usage: tagrelease version
|
|
#
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "Usage: $0 version" 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
echo "$1" > version
|
|
git add version
|
|
git commit -m "NASM $1"
|
|
git tag -m "NASM $1" -a nasm-"$1"
|
|
|