Update update_distribution.sh

This commit is contained in:
José Manuel Barroso Galindo
2022-02-12 20:22:29 +01:00
committed by GitHub
parent 110671cf27
commit 45bfebaa0f

View File

@@ -213,6 +213,10 @@ install_console_core() {
for bin in $(files_with_stripped_date "${TMP_FOLDER}/releases" | uniq) ; do
if is_arcade_core "${bin}" ; then
continue
fi
get_latest_release "${TMP_FOLDER}" "${bin}"
local LAST_RELEASE_FILE="${GET_LATEST_RELEASE_RET}"
@@ -572,6 +576,13 @@ is_empty_release() {
return 1
}
is_arcade_core() {
if [[ "${1^^}" =~ ^ARCADE-.*$ ]] ; then
return 0
fi
return 1
}
download_repository() {
local FOLDER="${1}"
local GIT_URL="${2}"