mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
b03ebb964b
so we can just do the latter for the e2e tests on CI
16 lines
322 B
Bash
Executable file
16 lines
322 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
RIOT_BRANCH=develop
|
|
|
|
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
|