get-version-from-git.sh 519 B

123456789101112
  1. #!/bin/bash
  2. # Echoes a version based on the git hashes of the element-web, react-sdk & js-sdk checkouts, for the case where
  3. # these dependencies are git checkouts.
  4. set -e
  5. # Since the deps are fetched from git, we can rev-parse
  6. REACT_SHA=$(git -C node_modules/matrix-react-sdk rev-parse --short=12 HEAD)
  7. JSSDK_SHA=$(git -C node_modules/matrix-js-sdk rev-parse --short=12 HEAD)
  8. VECTOR_SHA=$(git rev-parse --short=12 HEAD) # use the ACTUAL SHA rather than assume develop
  9. echo $VECTOR_SHA-react-$REACT_SHA-js-$JSSDK_SHA