Update documentation for stack relative directives
[platform/upstream/nasm.git] / misc / tagrelease
1 #!/bin/sh
2 #
3 # Usage: tagrelease version
4 #
5
6 if [ -z "$1" ]; then
7     echo "Usage: $0 version" 1>&2
8     exit 1
9 fi
10
11 echo "$1" > version
12 git add version
13 git commit -m "NASM $1"
14 git tag -m "NASM $1" -a nasm-"$1"
15