mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 02:05:45 +03:00
16 lines
374 B
Bash
Executable file
16 lines
374 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
ELEMENT_BRANCH=develop
|
|
|
|
if [ -d $BASE_DIR/element-web ]; then
|
|
echo "Element is already installed"
|
|
exit
|
|
fi
|
|
|
|
curl -L https://github.com/vector-im/element-web/archive/${ELEMENT_BRANCH}.zip --output element.zip
|
|
unzip -q element.zip
|
|
rm element.zip
|
|
mv element-web-${ELEMENT_BRANCH} element-web
|
|
cd element-web
|
|
yarn install --pure-lockfile
|
|
yarn run build
|