-
Lukas Müller authored
Former-commit-id: 27bcb00a7b06ba6c4cec535111c8d61fd16e7ca7
Lukas Müller authoredFormer-commit-id: 27bcb00a7b06ba6c4cec535111c8d61fd16e7ca7
release.bat 239 B
@echo off
setlocal
:PROMPT
SET /P AREYOUSURE=Are you sure to create a new KADMOS distribution (y/n)?
IF /I "%AREYOUSURE%" NEQ "Y" GOTO END
sphinx-build doc_source doc
python setup.py sdist
python setup.py bdist_wheel
:END
endlocal
pause