mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
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:
parent
0e742cec27
commit
89e5c4f8ae
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user