build.sh: Switch to X.Y-fixes branch if it exists

This commit is contained in:
fox.cpp 2020-06-02 19:01:29 +03:00
parent 6ebb3dae3c
commit a9e9efd6ac
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0

View file

@ -307,6 +307,15 @@ ensure_source_tree() {
MADDY_MAJOR=$(sed 's/^v//' <<<$DESCR | cut -f1 -d '.')
MADDY_MINOR=$(cut -f2 -d '.' <<<$DESCR )
set +e
if git branch -r | grep "origin/$MADDY_MAJOR.$MADDY_MINOR-fixes" >/dev/null; then
echo "--- Using $MADDY_MAJOR.$MADDY_MINOR-fixes tree" >&2
git checkout "$MADDY_MAJOR.$MADDY_MINOR-fixes"
DESCR=$(git describe --long 2>/dev/null)
fi
set -e
MADDY_PATCH=$(cut -f1 -d '-' <<<$DESCR | sed 's/-.+//' | cut -f3 -d '.')
MADDY_SNAPSHOT=$(cut -f2 -d '-' <<<$DESCR)
MADDY_COMMIT=$(cut -f3 -d '-' <<<$DESCR)