mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-18 23:44:59 +01:00
92f48eced9
The JS SDK was previously only here for the ESLint config, but this is now part of a separate package.
13 lines
279 B
Bash
Executable File
13 lines
279 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Script to perform a release of element-desktop.
|
|
#
|
|
# Requires githib-changelog-generator; to install, do
|
|
# pip install git+https://github.com/matrix-org/github-changelog-generator.git
|
|
|
|
set -e
|
|
|
|
cd `dirname $0`
|
|
|
|
./node_modules/matrix-js-sdk/release.sh -n -z "$@"
|