mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 10:15:43 +03:00
11 lines
203 B
Bash
Executable file
11 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 ..
|