488d78742d
Closes https://github.com/bigbluebutton/bigbluebutton/issues/21161 As suggested by @danimo the client files for bbb-html5 are not variable/dynamic content and are a better fit for /usr/share than for /var/bigbluebutton (where they'd also be in the way of recording files)
28 lines
519 B
Bash
Executable File
28 lines
519 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
for var in "$@"
|
|
do
|
|
if [[ $var == --reset ]] ; then
|
|
echo "Performing a full reset..."
|
|
rm -rf node_modules
|
|
fi
|
|
done
|
|
|
|
if [ ! -d ./node_modules ] ; then
|
|
npm ci --no-progress
|
|
fi
|
|
|
|
npm run build
|
|
|
|
sudo cp -rf dist/* /usr/share/bigbluebutton/html5-client/
|
|
|
|
sudo ln -sf /usr/share/bigbluebutton/nginx/bbb-html5.nginx.static /usr/share/bigbluebutton/nginx/bbb-html5.nginx
|
|
sudo systemctl restart nginx
|
|
|
|
echo ''
|
|
echo ''
|
|
echo '----------------'
|
|
echo 'bbb-html5 updated'
|