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.
This commit is contained in:
Richard van der Hoff 2017-05-31 23:50:06 +01:00
parent 0e742cec27
commit 89e5c4f8ae

View file

@ -42,13 +42,13 @@ dodep matrix-org matrix-react-sdk
mkdir -p 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 ./
pushd matrix-js-sdk
npm install
popd
rm -r matrix-react-sdk 2> /dev/null
rm -r matrix-react-sdk 2> /dev/null || true
ln -s ../matrix-react-sdk ./
pushd matrix-react-sdk
mkdir -p node_modules