mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
build.sh: Switch to X.Y-fixes branch if it exists
This commit is contained in:
parent
6ebb3dae3c
commit
a9e9efd6ac
1 changed files with 9 additions and 0 deletions
9
build.sh
9
build.sh
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue