bigbluebutton-Github/bbb-export-annotations/deploy.sh
Gustavo Trott de514dcb75
Add new shell scripts useful for development (#18905)
* Create run-dev.sh and deploy.sh for more applications

* Remove wrong line
2023-10-06 15:12:16 -03:00

22 lines
426 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 install --production
fi
sudo cp -r ./* /usr/local/bigbluebutton/bbb-export-annotations
sudo systemctl restart bbb-export-annotations
echo ''
echo ''
echo '----------------'
echo 'bbb-export-annotations updated'