Fix gitlab pre-start version typo (#5227)
This commit is contained in:
parent
c96c41e674
commit
b54d01235d
@ -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
|
||||
|
||||
@ -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.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user