mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
7 lines
259 B
Bash
Executable file
7 lines
259 B
Bash
Executable file
#!/bin/bash
|
|
# run with PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true sh install.sh if chrome is already installed
|
|
set -e
|
|
./synapse/install.sh
|
|
# local testing doesn't need a Element fetched from master,
|
|
# so not installing that by default
|
|
yarn install --pure-lockfile
|