2017-05-05 11:57:18 -04:00
|
|
|
#!/bin/bash
|
2016-03-23 10:15:22 -04:00
|
|
|
#
|
|
|
|
# Script to perform a release of vector-web.
|
|
|
|
#
|
|
|
|
# Requires github-changelog-generator; to install, do
|
|
|
|
# pip install git+https://github.com/matrix-org/github-changelog-generator.git
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
cd `dirname $0`
|
|
|
|
|
2017-05-05 11:54:55 -04:00
|
|
|
|
|
|
|
# bump Electron's package.json first
|
|
|
|
release="${1#v}"
|
|
|
|
tag="v${release}"
|
|
|
|
echo "electron npm version"
|
|
|
|
|
|
|
|
cd electron
|
|
|
|
npm version --no-git-tag-version "$release"
|
|
|
|
git commit package.json -m "$tag"
|
|
|
|
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
|
2016-03-23 10:39:30 -04:00
|
|
|
exec ./node_modules/matrix-js-sdk/release.sh -z "$@"
|