2021-12-20 16:58:37 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
2021-12-20 21:00:06 +00:00
|
|
|
export VITE_DEFAULT_HOMESERVER=https://call.ems.host
|
2022-03-29 18:14:31 +00:00
|
|
|
export VITE_PRODUCT_NAME="Element Call"
|
2021-12-20 17:53:23 +00:00
|
|
|
|
2021-12-20 16:58:37 +00:00
|
|
|
git clone https://github.com/matrix-org/matrix-js-sdk.git
|
|
|
|
cd matrix-js-sdk
|
|
|
|
yarn install
|
|
|
|
yarn run build
|
|
|
|
yarn link
|
|
|
|
|
2022-04-07 21:22:36 +00:00
|
|
|
cd ../element-call
|
2022-02-16 19:29:43 +00:00
|
|
|
|
|
|
|
export VITE_APP_VERSION=$(git describe --tags --abbrev=0)
|
|
|
|
|
2021-12-20 16:58:37 +00:00
|
|
|
yarn link matrix-js-sdk
|
|
|
|
yarn install
|
|
|
|
yarn run build
|