Fix Docker image version for develop builds
Turns out it helps to use the right syntax. Fixes https://github.com/vector-im/riot-web/issues/12009pull/12670/head
parent
71f2f0e7c9
commit
b0f71bc990
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/bin/sh
|
||||||
|
|
||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ DIST_VERSION=$TAG
|
||||||
# a few SHAs rather than a version.
|
# a few SHAs rather than a version.
|
||||||
# Docker Hub doesn't always check out the tag and sometimes checks out the branch, so we should look
|
# Docker Hub doesn't always check out the tag and sometimes checks out the branch, so we should look
|
||||||
# for an appropriately tagged branch as well (heads/v1.2.3).
|
# for an appropriately tagged branch as well (heads/v1.2.3).
|
||||||
if [ $BRANCH != 'HEAD' && $BRANCH != 'heads/v*' ]
|
if [[ $BRANCH != 'HEAD' && $BRANCH != 'heads/v*' ]]
|
||||||
then
|
then
|
||||||
REACT_SHA=$(cd node_modules/matrix-react-sdk; git rev-parse --short=12 HEAD)
|
REACT_SHA=$(cd node_modules/matrix-react-sdk; git rev-parse --short=12 HEAD)
|
||||||
JSSDK_SHA=$(cd node_modules/matrix-js-sdk; git rev-parse --short=12 HEAD)
|
JSSDK_SHA=$(cd node_modules/matrix-js-sdk; git rev-parse --short=12 HEAD)
|
||||||
|
|
Loading…
Reference in New Issue