mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-28 17:04:34 +00:00
14 lines
319 B
Batchfile
14 lines
319 B
Batchfile
@echo off
|
|
set PATH_TO_ODIN==..\..\odin
|
|
|
|
echo ---
|
|
echo Building Documentation File
|
|
echo ---
|
|
%PATH_TO_ODIN% doc ..\..\examples\all -all-packages -doc-format || exit /b
|
|
|
|
|
|
echo ---
|
|
echo Running Documentation Tester
|
|
echo ---
|
|
%PATH_TO_ODIN% run documentation_tester.odin -file -vet -strict-style -- %PATH_TO_ODIN% || exit /b
|