mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 14:05:04 +08:00
337ac2f6a0
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
|