You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-20 16:22:28 +03:00
18 lines
357 B
Bash
Executable File
18 lines
357 B
Bash
Executable File
#!/bin/bash
|
|
RIOT_BRANCH=master
|
|
|
|
BASE_DIR=$(readlink -f $(dirname $0))
|
|
if [ -d $BASE_DIR/riot-web ]; then
|
|
echo "riot is already installed"
|
|
exit
|
|
fi
|
|
|
|
cd $BASE_DIR
|
|
curl -L https://github.com/vector-im/riot-web/archive/${RIOT_BRANCH}.zip --output riot.zip
|
|
unzip -q riot.zip
|
|
rm riot.zip
|
|
mv riot-web-${RIOT_BRANCH} riot-web
|
|
cd riot-web
|
|
npm install
|
|
npm run build
|