boklm pushed to branch main at The Tor Project / Applications / torbrowser-launcher

Commits:

1 changed file:

Changes:

  • git-tag_release.sh
    1
    +#!/bin/sh
    
    2
    +# Make a signed git tag for the current commit, for a new release
    
    3
    +set -e
    
    4
    +VERSION=$(cat share/torbrowser-launcher/version)
    
    5
    +git tag -s --message="torbrowser-launcher version $VERSION" v$VERSION
    
    6
    +echo "Created git tag v$VERSION"