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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
730 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2019-04-10 15:47:02 -06: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)
2022-07-29 14:30:16 +01:00
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'
fi
2022-07-29 14:30:16 +01:00
if [[ $USE_CUSTOM_SDKS == false ]]
2019-04-10 15:47:02 -06:00
then
2024-10-15 14:57:26 +01:00
echo "skipping js-sdk install: USE_CUSTOM_SDKS is false"
2019-04-10 15:47:02 -06:00
exit 0
fi
echo "Linking js-sdk"
2022-07-29 14:30:16 +01:00
git clone --depth 1 --branch $JS_SDK_BRANCH "$JS_SDK_REPO" js-sdk
2019-04-10 15:47:02 -06:00
cd js-sdk
yarn link
yarn --network-timeout=100000 install
2019-04-10 15:47:02 -06:00
cd ../
2024-10-15 14:57:26 +01:00
echo "Setting up element-web with js-sdk package"
2019-04-10 15:47:02 -06:00
yarn link matrix-js-sdk