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