33 lines
394 B
Batchfile
33 lines
394 B
Batchfile
@ECHO off
|
|
|
|
IF NOT EXIST "venv\" (
|
|
|
|
SET /P gumpf=You need to set up a venv! Check the running from source help for more info!
|
|
EXIT /B 1
|
|
|
|
)
|
|
|
|
:delete
|
|
|
|
IF EXIST "help\" (
|
|
|
|
echo Deleting old help...
|
|
|
|
rmdir /s /q help
|
|
|
|
)
|
|
|
|
:create
|
|
|
|
echo Creating new help...
|
|
|
|
CALL venv\Scripts\activate.bat
|
|
|
|
pip install mkdocs-material
|
|
|
|
mkdocs build -d help
|
|
|
|
CALL venv\Scripts\deactivate.bat
|
|
|
|
SET /P done=Done!
|