2021-12-06 23:11:01 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Echoes a version based on the git hashes of the element-web, react-sdk & js-sdk checkouts, for the case where
|
|
|
|
# these dependencies are git checkouts.
|
|
|
|
|
2022-10-12 11:15:51 -04:00
|
|
|
set -e
|
|
|
|
|
2021-12-06 23:11:01 -05:00
|
|
|
# Since the deps are fetched from git, we can rev-parse
|
2022-05-16 10:23:44 -04:00
|
|
|
REACT_SHA=$(git -C node_modules/matrix-react-sdk rev-parse --short=12 HEAD)
|
|
|
|
JSSDK_SHA=$(git -C node_modules/matrix-js-sdk rev-parse --short=12 HEAD)
|
2021-12-06 23:11:01 -05:00
|
|
|
VECTOR_SHA=$(git rev-parse --short=12 HEAD) # use the ACTUAL SHA rather than assume develop
|
|
|
|
echo $VECTOR_SHA-react-$REACT_SHA-js-$JSSDK_SHA
|