You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-18 09:22:18 +03:00
12 lines
203 B
Bash
Executable File
12 lines
203 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
npm install
|
|
scripts/fetchdep.sh matrix-org matrix-js-sdk
|
|
rm -r node_modules/matrix-js-sdk || true
|
|
ln -s ../matrix-js-sdk node_modules/matrix-js-sdk
|
|
|
|
cd matrix-js-sdk
|
|
npm install
|
|
cd ..
|