mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
b03ebb964b
so we can just do the latter for the e2e tests on CI
17 lines
322 B
Bash
Executable File
17 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
|