mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 20:38:55 +03:00
c128e75f5d
On a freshly install of the developer environment, the build:jitsi try to create a file in ./webapp with the cURL command. However, ./webapp folder doesn't exist and the build script crash. This patch makes sure the appropriate folder is created if it doesn't already exist Signed-off-by: Danny Colin <contact@dannycolin.com>
7 lines
159 B
Bash
Executable file
7 lines
159 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ ! -f "./webapp" ]]; then
|
|
mkdir "./webapp"
|
|
fi
|
|
|
|
curl -s https://jitsi.riot.im/libs/external_api.min.js > ./webapp/jitsi_external_api.min.js
|