1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2025-02-26 18:46:04 +01:00

Fix HTML dir

This commit is contained in:
peteGSX 2025-02-05 18:59:37 +10:00
parent eb09985480
commit f61dcc0915
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ SOURCEDIR = .
# Determine build directory based on git branch
BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
ifeq ($(BRANCH),master-exraildocdev)
BUILDDIR = _build/devel
BUILDDIR = _build/html/devel
else
BUILDDIR = _build
endif

View File

@ -12,7 +12,7 @@ set SOURCEDIR=.
for /f "tokens=*" %%g in ('git rev-parse --abbrev-ref HEAD') do (set BRANCH=%%g)
if "%BRANCH%"=="master-exraildocdev" (
set BUILDDIR=_build\devel
set BUILDDIR=_build\html\devel
) else (
set BUILDDIR=_build
)