2020-09-08 19:53:10 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
mydir="$(dirname "$(realpath "$0")")"
|
|
|
|
source "$mydir/merge_helpers.sh"
|
|
|
|
|
|
|
|
# Require clean git state
|
|
|
|
require_clean_git
|
|
|
|
|
2020-11-29 14:52:07 +03:00
|
|
|
# Color corrections | TODO more?
|
2021-02-05 14:15:52 +03:00
|
|
|
sed -i 's|"@color/riotx_accent"|"?colorAccent"|g' vector/src/*/res/layout/*
|
|
|
|
sed -i 's|"@style/VectorButtonStyle"|"?materialButtonStyle"|g' vector/src/*/res/layout/*
|
2020-11-29 14:52:07 +03:00
|
|
|
uncommitted=`git status --porcelain`
|
|
|
|
if [ -z "$uncommitted" ]; then
|
|
|
|
echo "Seems like colors are still fine :)"
|
|
|
|
else
|
|
|
|
git add -A
|
|
|
|
git commit -m 'Automatic color correction'
|
|
|
|
fi
|
2020-09-08 19:53:10 +03:00
|
|
|
|
|
|
|
# Keep in sync with pre_merge.sh!
|
|
|
|
restore_sc README.md
|
|
|
|
restore_sc fastlane
|
2020-11-25 11:29:16 +03:00
|
|
|
restore_sc .github
|
2020-09-08 19:53:10 +03:00
|
|
|
|
|
|
|
git add -A
|
|
|
|
git commit -m "Automatic upstream merge postprocessing"
|
|
|
|
|
2021-01-16 13:21:39 +03:00
|
|
|
"$mydir"/correct_strings.sh
|