mirror of
https://github.com/SchildiChat/schildichat-desktop.git
synced 2025-03-25 17:50:00 +01:00
29 lines
476 B
Bash
Executable File
29 lines
476 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
mydir="$(dirname "$(realpath "$0")")"
|
|
branch=${BRANCH:-"sc"}
|
|
|
|
pushd "$mydir" > /dev/null
|
|
|
|
source ./merge_helpers.sh
|
|
|
|
# Fetch to get upstream strings for current version
|
|
forall_repos git fetch upstream
|
|
|
|
# Check branch
|
|
check_branch $branch
|
|
forall_repos check_branch $branch
|
|
|
|
# Ensure clean git state
|
|
forall_repos check_clean_git
|
|
|
|
# Automatic i18n reversion
|
|
automatic_i18n_reversion y
|
|
|
|
# Automatic i18n adjustment
|
|
automatic_i18n_adjustment
|
|
|
|
popd > /dev/null
|