Files
element-web/scripts/ci/install-deps.sh
T

20 lines
363 B
Bash
Raw Normal View History

2019-03-11 18:23:07 +00:00
#!/bin/bash
set -ex
2019-03-11 18:08:37 +00:00
2018-05-02 10:58:43 +01:00
scripts/fetchdep.sh matrix-org matrix-js-sdk
2019-03-11 18:08:37 +00:00
pushd matrix-js-sdk
yarn link
yarn install --pure-lockfile $@
2019-03-11 18:08:37 +00:00
popd
scripts/fetchdep.sh matrix-org matrix-analytics-events main
pushd matrix-analytics-events
yarn link
yarn install --pure-lockfile $@
popd
2019-03-11 18:08:37 +00:00
yarn link matrix-js-sdk
yarn link matrix-analytics-events
yarn install --pure-lockfile $@