mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-13 10:30:03 -04:00
Create .nojekyll file
This commit is contained in:
parent
92177e5823
commit
5eaa4c794b
1 changed files with 6 additions and 0 deletions
|
@ -14,6 +14,8 @@ function main() {
|
||||||
parseIndex()
|
parseIndex()
|
||||||
console.log('Creating root directory...')
|
console.log('Creating root directory...')
|
||||||
createRootDirectory()
|
createRootDirectory()
|
||||||
|
console.log('Creating .nojekyll...')
|
||||||
|
createNoJekyllFile()
|
||||||
console.log('Generating index.m3u...')
|
console.log('Generating index.m3u...')
|
||||||
generateIndex()
|
generateIndex()
|
||||||
console.log('Generating index.country.m3u...')
|
console.log('Generating index.country.m3u...')
|
||||||
|
@ -39,6 +41,10 @@ function createRootDirectory() {
|
||||||
helper.createDir(ROOT_DIR)
|
helper.createDir(ROOT_DIR)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function createNoJekyllFile() {
|
||||||
|
helper.createFile(`${ROOT_DIR}/.nojekyll`)
|
||||||
|
}
|
||||||
|
|
||||||
function parseIndex() {
|
function parseIndex() {
|
||||||
const root = helper.parsePlaylist('index.m3u')
|
const root = helper.parsePlaylist('index.m3u')
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue