Files
Web-NibblePoker/compile-content.cmd
Herwin b0fbd2199f Removed static content index, Added independant base files for content system's index
Update compile-content.cmd, compile.bat, and 11 more files...
2024-01-08 11:55:17 +01:00

21 lines
324 B
Batchfile

@echo off
setlocal enabledelayedexpansion
:: Going into the script's directory
cd /D "%~dp0"
:content
echo.
echo Handling the raw content files
echo ------------------------------
:content-compile
echo Compiling index files...
python content_index_maker.py ./content/raw_index/ ./content/index.json
:content-end
:end