element-web/scripts/docker-link-repos.sh

40 lines
989 B
Bash
Raw Normal View History

#!/bin/bash
2019-04-10 23:47:02 +02:00
set -ex
# Automatically link to develop if we're building develop, but only if the caller
# hasn't asked us to build something else
BRANCH=$(git rev-parse --abbrev-ref HEAD)
if [ $USE_CUSTOM_SDKS == false ] && [ $BRANCH == 'develop' ]
then
echo "using develop dependencies for react-sdk and js-sdk"
USE_CUSTOM_SDKS=true
JS_SDK_BRANCH='develop'
REACT_SDK_BRANCH='develop'
fi
2019-04-10 23:47:02 +02:00
if [ $USE_CUSTOM_SDKS == false ]
then
echo "skipping react-sdk and js-sdk installs: USE_CUSTOM_SDKS is false"
exit 0
fi
echo "Linking js-sdk"
2020-03-04 23:11:40 +01:00
git clone --depth 1 --branch $JS_SDK_BRANCH $JS_SDK_REPO js-sdk
2019-04-10 23:47:02 +02:00
cd js-sdk
yarn link
yarn --network-timeout=100000 install
2019-04-10 23:47:02 +02:00
cd ../
echo "Linking react-sdk"
2020-03-04 23:11:40 +01:00
git clone --depth 1 --branch $REACT_SDK_BRANCH $REACT_SDK_REPO react-sdk
2019-04-10 23:47:02 +02:00
cd react-sdk
yarn link
yarn link matrix-js-sdk
yarn --network-timeout=100000 install
2019-04-10 23:47:02 +02:00
cd ../
2020-07-17 13:34:36 +02:00
echo "Setting up Element with react-sdk and js-sdk packages"
2019-04-10 23:47:02 +02:00
yarn link matrix-js-sdk
yarn link matrix-react-sdk