Created
November 11, 2014 19:58
-
-
Save fcecagno/a6f83b50a933bf834029 to your computer and use it in GitHub Desktop.
Build bbb-apps
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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