From 8400b5069ff9e1ea391ad6d8042af3d48e74b8f1 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 12 Oct 2021 21:44:19 +0300 Subject: [PATCH] Update create-matrix.js --- scripts/create-matrix.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/create-matrix.js b/scripts/create-matrix.js index 54f27d99..76b63ba7 100644 --- a/scripts/create-matrix.js +++ b/scripts/create-matrix.js @@ -16,7 +16,7 @@ file.list('sites/*.channels.xml', includes).then(files => { const parsed = parser.parseChannels(channelsFile) parsed.groups.forEach(group => { matrix.site.push(parsed.site) - matrix.country.push(group.country) + matrix.country.push(group.country.toLowerCase()) matrix.days.push(days) }) })