Files
ThreadNet-Web/test/end-to-end-tests/riot/install.sh
T

17 lines
322 B
Bash
Raw Normal View History

#!/bin/bash
set -e
RIOT_BRANCH=develop
2018-07-18 18:04:31 +02:00
if [ -d $BASE_DIR/riot-web ]; then
echo "riot is already installed"
exit
fi
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
yarn install
yarn run build