You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-08-09 08:42:50 +03:00
Take advantage of Yarn's preservation of links while installing and set up links first and install second. This should result in a small speedup since we no longer install the published SDKs just to replace them on the next line.
14 lines
152 B
Bash
Executable File
14 lines
152 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
scripts/fetchdep.sh matrix-org matrix-js-sdk
|
|
|
|
pushd matrix-js-sdk
|
|
yarn link
|
|
yarn install
|
|
popd
|
|
|
|
yarn link matrix-js-sdk
|
|
yarn install
|