From f2782b57e59cdc30ad7c4a2c96f4f49392a3f9d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Manuel=20Barroso=20Galindo?= Date: Sat, 12 Nov 2022 00:27:47 +0100 Subject: [PATCH] Adding gameboy aliases, skippin gbc by now. --- .github/calculate_db.py | 5 +++++ .github/update_distribution.sh | 3 +++ 2 files changed, 8 insertions(+) diff --git a/.github/calculate_db.py b/.github/calculate_db.py index e00b0af43..bd1af5166 100755 --- a/.github/calculate_db.py +++ b/.github/calculate_db.py @@ -127,6 +127,11 @@ distribution_mister_aliases = [ ['megacd', 'segacd'], ['sms', 'mastersystem'], ['coleco', 'colecovision'], + ['gb', 'gameboy'], + ['gbc', 'gameboycolor'], + ['sgb', 'supergameboy'], + ['sgb', 'supergameboy'], + ['gba', 'gameboyadvance'], # Computers ['vector06c', 'vector06'], diff --git a/.github/update_distribution.sh b/.github/update_distribution.sh index cd5ec999e..52d8317c7 100755 --- a/.github/update_distribution.sh +++ b/.github/update_distribution.sh @@ -781,6 +781,9 @@ files_with_no_date() { local FOLDER="${1}" pushd "${FOLDER}" > /dev/null 2>&1 for file in *; do + if [[ "${file}" == "Game Boy Color.mgl" ]] ; then + continue + fi if ! [[ "${file}" =~ ^.+_([0-9]{8})(\..+)?$ ]] ; then echo "${file}" fi