mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Fix if condition for deciding how to structure docker version file (#23186)
This commit is contained in:
parent
351d5faa9b
commit
ae2c163441
@ -7,8 +7,10 @@ DIST_VERSION=$(git describe --abbrev=0 --tags)
|
|||||||
|
|
||||||
DIR=$(dirname "$0")
|
DIR=$(dirname "$0")
|
||||||
|
|
||||||
# If we're not using custom SDKs and on a branch other than master, generate a version akin go develop.element.io
|
# If the branch comes out as HEAD then we're probably checked out to a tag, so if the thing is *not*
|
||||||
if [[ $USE_CUSTOM_SDKS == false ]] && [[ $BRANCH != 'master' ]]
|
# coming out as HEAD then we're on a branch. When we're on a branch, we want to resolve ourselves to
|
||||||
|
# a few SHAs rather than a version.
|
||||||
|
if [[ $BRANCH != HEAD && ! $BRANCH =~ heads/v.+ ]]
|
||||||
then
|
then
|
||||||
DIST_VERSION=$("$DIR"/get-version-from-git.sh)
|
DIST_VERSION=$("$DIR"/get-version-from-git.sh)
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user