Download this file
#!/bin/sh RELEASE="$1" if [ -z "$RELEASE" ] ; then echo "You forgot the version number" >&2 exit 1 fi git tag -s --force stable -m "roxterm-$RELEASE" $2 git tag -s --force $RELEASE -m "Release $RELEASE" $2