Update update.js

This commit is contained in:
Aleksandr Statciuk 2023-01-09 11:07:34 +03:00
parent b47c6ff010
commit aef3eed09e

View file

@ -61,7 +61,12 @@ async function createTable(log) {
})
data = Object.values(_.groupBy(data, item => item[0]))
const output = table.create(data, ['Site', 'Channels', 'EPG', 'Status'])
const output = table.create(data, [
'Site',
'Channels',
'EPG',
'Status                                                   '
])
await file.create('./.readme/_sites.md', output)
}