mirror of https://github.com/vector-im/riot-web
Fix fetch-develop-deps.sh
This got broken by https://github.com/vector-im/riot-web/pull/4120 so that it didn't work on a clean git clone.pull/4139/head
parent
0e742cec27
commit
89e5c4f8ae
|
@ -42,13 +42,13 @@ dodep matrix-org matrix-react-sdk
|
||||||
mkdir -p node_modules
|
mkdir -p node_modules
|
||||||
cd node_modules
|
cd node_modules
|
||||||
|
|
||||||
rm -r matrix-js-sdk 2> /dev/null
|
rm -r matrix-js-sdk 2> /dev/null || true
|
||||||
ln -s ../matrix-js-sdk ./
|
ln -s ../matrix-js-sdk ./
|
||||||
pushd matrix-js-sdk
|
pushd matrix-js-sdk
|
||||||
npm install
|
npm install
|
||||||
popd
|
popd
|
||||||
|
|
||||||
rm -r matrix-react-sdk 2> /dev/null
|
rm -r matrix-react-sdk 2> /dev/null || true
|
||||||
ln -s ../matrix-react-sdk ./
|
ln -s ../matrix-react-sdk ./
|
||||||
pushd matrix-react-sdk
|
pushd matrix-react-sdk
|
||||||
mkdir -p node_modules
|
mkdir -p node_modules
|
||||||
|
|
Loading…
Reference in New Issue