Skip to content

Commit

Permalink
Merge pull request #12612 from Pestdoktor/docker-cleanup
Browse files Browse the repository at this point in the history
docker: optimize custom sdk builds
  • Loading branch information
turt2live authored Mar 5, 2020
2 parents 872a7a7 + f5bd5a3 commit 71f2f0e
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions scripts/docker-link-repos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,15 @@ then
fi

echo "Linking js-sdk"
git clone $JS_SDK_REPO js-sdk
git clone --depth 1 --branch $JS_SDK_BRANCH $JS_SDK_REPO js-sdk
cd js-sdk
git checkout $JS_SDK_BRANCH
yarn link
yarn --network-timeout=100000 install
cd ../

echo "Linking react-sdk"
git clone $REACT_SDK_REPO react-sdk
git clone --depth 1 --branch $REACT_SDK_BRANCH $REACT_SDK_REPO react-sdk
cd react-sdk
git checkout $REACT_SDK_BRANCH
yarn link
yarn link matrix-js-sdk
yarn --network-timeout=100000 install
Expand Down

0 comments on commit 71f2f0e

Please sign in to comment.