Update the Docker utility script for the new main branch. (#3806)

Updates the last remaining references to the "master" branch to the renamed "main" branch.
This commit is contained in:
MarkWasley 2021-02-12 17:30:11 +13:00 committed by GitHub
parent 0f9de13fcd
commit 648c348566
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -262,7 +262,7 @@ install() {
if [[ ! -f azuracast.env ]]; then
echo "Creating default AzuraCast settings file..."
curl -fsSL https://raw.githubusercontent.com/AzuraCast/AzuraCast/master/azuracast.sample.env -o azuracast.env
curl -fsSL https://raw.githubusercontent.com/AzuraCast/AzuraCast/main/azuracast.sample.env -o azuracast.env
# Generate a random password and replace the MariaDB password with it.
local NEW_PASSWORD
@ -283,7 +283,7 @@ install() {
if [[ $AZURACAST_VERSION == "stable" ]]; then
curl -fsSL https://raw.githubusercontent.com/AzuraCast/AzuraCast/stable/docker-compose.sample.yml -o docker-compose.yml
else
curl -fsSL https://raw.githubusercontent.com/AzuraCast/AzuraCast/master/docker-compose.sample.yml -o docker-compose.yml
curl -fsSL https://raw.githubusercontent.com/AzuraCast/AzuraCast/main/docker-compose.sample.yml -o docker-compose.yml
fi
fi