mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 09:15:41 +03:00
09a140ec6f
... for consistency with js-sdk
12 lines
280 B
Bash
Executable file
12 lines
280 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Script to perform a release of matrix-react-sdk.
|
|
#
|
|
# Requires githib-changelog-generator; to install, do
|
|
# pip install git+https://github.com/matrix-org/github-changelog-generator.git
|
|
|
|
set -e
|
|
|
|
cd `dirname $0`
|
|
|
|
exec ./node_modules/matrix-js-sdk/release.sh -z "$@"
|