mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-15 00:04:59 +08:00
27 lines
460 B
Bash
Executable File
27 lines
460 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
git clone https://github.com/matrix-org/matrix-js-sdk.git
|
|
cd matrix-js-sdk
|
|
git checkout robertlong/group-call
|
|
yarn install
|
|
yarn run build
|
|
yarn link
|
|
cd ..
|
|
|
|
git clone https://github.com/matrix-org/matrix-react-sdk.git
|
|
cd matrix-react-sdk
|
|
git checkout robertlong/group-call
|
|
yarn link matrix-js-sdk
|
|
yarn install
|
|
yarn run build
|
|
yarn link
|
|
cd ..
|
|
|
|
cd matrix-video-chat
|
|
yarn link matrix-js-sdk
|
|
yarn link matrix-react-sdk
|
|
yarn install
|
|
yarn run build
|