2016-02-25 10:31:04 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-04-26 06:25:41 -04: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 10:31:04 -05:00
|
|
|
|
2019-04-26 07:22:32 -04:00
|
|
|
set -ex
|
2016-02-25 10:31:04 -05:00
|
|
|
|
2017-05-11 12:46:08 -04:00
|
|
|
rm dist/riot-*.tar.gz || true # rm previous artifacts without failing if it doesn't exist
|
2016-02-25 10:31:04 -05:00
|
|
|
|
2017-05-26 17:51:55 -04: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 09:30:53 -05:00
|
|
|
|
2016-02-02 12:03:48 -05:00
|
|
|
VECTOR_SHA=$(git rev-parse --short=12 HEAD) # use the ACTUAL SHA rather than assume develop
|
2016-03-11 09:30:53 -05:00
|
|
|
|
2016-11-11 13:23:25 -05:00
|
|
|
DIST_VERSION=$VECTOR_SHA-react-$REACT_SHA-js-$JSSDK_SHA scripts/package.sh -d
|