2020-04-15 18:12:02 +01:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
2020-07-01 15:30:53 +01:00
|
|
|
# Script to perform a release of element-desktop.
|
2020-04-15 18:12:02 +01:00
|
|
|
#
|
2022-05-25 22:07:56 +01:00
|
|
|
# Requires githib-changelog-generator; to install, do
|
2020-04-15 18:12:02 +01:00
|
|
|
# pip install git+https://github.com/matrix-org/github-changelog-generator.git
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
cd `dirname $0`
|
|
|
|
|
2022-05-25 22:07:56 +01:00
|
|
|
./node_modules/matrix-js-sdk/release.sh -n "$@"
|