You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-25 05:23:13 +03:00
16 lines
421 B
Bash
Executable File
16 lines
421 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Script to perform a post-release steps of matrix-js-sdk.
|
|
#
|
|
# Requires:
|
|
# jq; install from your distribution's package manager (https://stedolan.github.io/jq/)
|
|
|
|
set -e
|
|
|
|
jq --version > /dev/null || (echo "jq is required: please install it"; kill $$)
|
|
|
|
if [ "$(git branch -lr | grep origin/develop -c)" -ge 1 ]; then
|
|
"$(dirname "$0")/scripts/release/post-merge-master.sh"
|
|
git push origin develop
|
|
fi
|