diff --git a/.github/update_distribution.sh b/.github/update_distribution.sh index c08b11ff8..0e1e22dec 100755 --- a/.github/update_distribution.sh +++ b/.github/update_distribution.sh @@ -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}"