boklm pushed to branch main at The Tor Project / Applications / torbrowser-launcher
Commits:
-
899ea231
by Nicolas Vigier at 2024-01-12T11:13:05+01:00
1 changed file:
Changes:
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" |