Update create-matrix.js

This commit is contained in:
Aleksandr Statciuk 2021-10-12 21:44:19 +03:00
parent 655618227c
commit 8400b5069f

View file

@ -16,7 +16,7 @@ file.list('sites/*.channels.xml', includes).then(files => {
const parsed = parser.parseChannels(channelsFile) const parsed = parser.parseChannels(channelsFile)
parsed.groups.forEach(group => { parsed.groups.forEach(group => {
matrix.site.push(parsed.site) matrix.site.push(parsed.site)
matrix.country.push(group.country) matrix.country.push(group.country.toLowerCase())
matrix.days.push(days) matrix.days.push(days)
}) })
}) })