This commit is contained in:
Devin Dooley 2023-07-18 19:04:00 -07:00
Родитель f5a0699cbf
Коммит 51d6c96b2a
Не найден ключ, соответствующий данной подписи
2 изменённых файлов: 12 добавлений и 1 удалений

Просмотреть файл

@ -55,7 +55,17 @@ begin_test "ghe-host-check detects unsupported GitHub Enterprise Server versions
# shellcheck disable=SC2046 # Word splitting is required to populate the variables
read -r bu_version_major bu_version_minor _ <<<$(ghe_parse_version $BACKUP_UTILS_VERSION)
bu_major_minor="$bu_version_major.$bu_version_minor"
releases=$(/usr/bin/curl -s https://github-enterprise.s3.amazonaws.com/release/latest.json)
#releases=$(/usr/bin/curl -s https://github-enterprise.s3.amazonaws.com/release/latest.json)
releases=$(cat <<EOF
{
"3.8": "3.8.3",
"3.7": "3.7.10",
"3.6": "3.6.13",
"3.5": "3.5.17",
"3.4": "3.4.3"
}
EOF
)
supported=$(echo $releases | jq -r 'select(."'${bu_major_minor}'")')
# shellcheck disable=SC2207 # Command required as alternatives fail
keys=($(echo $releases | jq -r 'keys[]'))

Просмотреть файл

@ -19,6 +19,7 @@
#
# Copyright (c) 2011-14 by Ryan Tomayko <http://tomayko.com>
# License: MIT
# shellcheck disable=SC2319
set -e
# Setting basic paths