Fix gitlab pre-start version typo (#5227)

This commit is contained in:
Alexander L. 2026-03-27 18:40:32 +01:00 committed by GitHub
parent c96c41e674
commit b54d01235d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 2 deletions

View File

@ -32,7 +32,7 @@ VERSIONS+=("18.5.1")
VERSIONS+=("18.6.2")
VERSIONS+=("18.7.4")
VERSIONS+=("18.8.4")
VERSIONs+=("18.9.3")
VERSIONS+=("18.9.3")
VERSIONS+=("18.10.1")
# List of images on migration path
@ -167,6 +167,12 @@ if [[ "${VERSIONS[-1]}" == "${current_version}" ]]; then
exit
fi
# Guard against migration logic bugs due to version/image list drift.
if [[ "${#VERSIONS[@]}" -ne "${#IMAGES[@]}" ]]; then
echo "Migration configuration error: VERSIONS (${#VERSIONS[@]}) and IMAGES (${#IMAGES[@]}) length mismatch."
exit 1
fi
# Loop through versions, ignoring past versions
for i in "${!VERSIONS[@]}"; do
[[ "${i}" -le "${active_version_idx}" ]] && continue

View File

@ -3,7 +3,7 @@ id: gitlab
name: GitLab
tagline: Software. Faster.
category: developer
version: "18.10.1"
version: "18.10.1-1"
port: 8929
description: >-
⚠️ This app is RAM-intensive (+6GB recommended) and can take 15-20 minutes to start after installation on low-powered devices.