Skip to content

Instantly share code, notes, and snippets.

@fcecagno
Created November 11, 2014 19:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fcecagno/a6f83b50a933bf834029 to your computer and use it in GitHub Desktop.
Save fcecagno/a6f83b50a933bf834029 to your computer and use it in GitHub Desktop.
Build bbb-apps
#!/bin/bash
sudo service bbb-red5 stop
sudo pkill -u red5
set -xe
sudo chmod -R 777 /usr/share/red5/webapps
apps=( "bbb-video" "bbb-voice" "bigbluebutton-apps" "deskshare" )
for app in "${apps[@]}"; do
cd ~/dev/bigbluebutton/$app
gradle clean war deploy
done
sudo service bbb-red5 start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment