2016-02-25 16:31:04 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-04-26 12:25:41 +02:00
|
|
|
# Runs package.sh setting the version to git hashes of the riot-web,
|
|
|
|
# react-sdk & js-sdk checkouts, for the case where these dependencies
|
|
|
|
# are git checkouts.
|
2016-02-25 16:31:04 +01:00
|
|
|
|
2019-04-26 13:22:32 +02:00
|
|
|
set -ex
|
2016-02-25 16:31:04 +01:00
|
|
|
|
2017-05-11 18:46:08 +02:00
|
|
|
rm dist/riot-*.tar.gz || true # rm previous artifacts without failing if it doesn't exist
|
2016-02-25 16:31:04 +01:00
|
|
|
|
2017-05-26 23:51:55 +02:00
|
|
|
# Since the deps are fetched from git, we can rev-parse
|
|
|
|
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)
|
2016-03-11 15:30:53 +01:00
|
|
|
|
2016-02-02 18:03:48 +01:00
|
|
|
VECTOR_SHA=$(git rev-parse --short=12 HEAD) # use the ACTUAL SHA rather than assume develop
|
2016-03-11 15:30:53 +01:00
|
|
|
|
2016-11-11 19:23:25 +01:00
|
|
|
DIST_VERSION=$VECTOR_SHA-react-$REACT_SHA-js-$JSSDK_SHA scripts/package.sh -d
|