You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
368 B
12 lines
368 B
3 years ago
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
echo "Updating mumble-server..."
|
||
|
./build.updaterepo.sh https://github.com/sudoforge/docker-mumble-server.git mumble-server
|
||
|
echo "Updating mumble-web..."
|
||
|
./build.updaterepo.sh https://github.com/Johni0702/mumble-web.git mumble-web
|
||
|
echo "Updating botamusique..."
|
||
|
./build.updaterepo.sh https://github.com/azlux/botamusique.git botamusique
|
||
|
echo "Done."
|