1
0
mirror of https://github.com/nextcloud/docker.git synced 2024-06-21 15:06:37 +02:00

Merge pull request #1253 from nextcloud/remove-production-channel

Remove separate production channel
This commit is contained in:
Tilo Spannagel 2020-09-30 23:17:09 +02:00 committed by GitHub
commit 1bec843644
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,7 @@
#!/bin/bash
set -Eeuo pipefail
declare -A release_channel=(
[stable]='19.0.3'
[production]='18.0.9'
)
stable_channel='19.0.3'
self="$(basename "$BASH_SOURCE")"
cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"
@ -94,11 +91,9 @@ for version in "${versions[@]}"; do
versionAliases+=( "latest" )
fi
for channel in "${!release_channel[@]}"; do
if [ "$fullversion_with_extension" = "${release_channel[$channel]}" ]; then
versionAliases+=( "$channel" )
fi
done
if [ "$fullversion_with_extension" = "$stable_channel" ]; then
versionAliases+=( "stable" "production" )
fi
variantAliases=( "${versionAliases[@]/%/-$variant}" )
variantAliases=( "${variantAliases[@]//latest-}" )