2018-07-27 21:08:14 +08:00
|
|
|
#!/bin/bash
|
2018-09-26 01:01:10 +08:00
|
|
|
RIOT_BRANCH=develop
|
2018-07-19 00:04:31 +08:00
|
|
|
|
2018-07-27 21:04:04 +08:00
|
|
|
BASE_DIR=$(readlink -f $(dirname $0))
|
2018-07-27 21:08:14 +08:00
|
|
|
if [ -d $BASE_DIR/riot-web ]; then
|
2018-08-14 18:53:16 +08:00
|
|
|
echo "riot is already installed"
|
|
|
|
exit
|
2018-07-27 20:00:01 +08:00
|
|
|
fi
|
|
|
|
|
2018-07-27 20:10:19 +08:00
|
|
|
cd $BASE_DIR
|
2018-07-18 23:52:51 +08:00
|
|
|
curl -L https://github.com/vector-im/riot-web/archive/${RIOT_BRANCH}.zip --output riot.zip
|
2018-07-30 19:40:23 +08:00
|
|
|
unzip -q riot.zip
|
2018-07-18 23:52:51 +08:00
|
|
|
rm riot.zip
|
|
|
|
mv riot-web-${RIOT_BRANCH} riot-web
|
2018-07-27 20:10:19 +08:00
|
|
|
cd riot-web
|
2018-07-18 23:52:51 +08:00
|
|
|
npm install
|
|
|
|
npm run build
|