1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2025-06-17 04:55:23 +02:00

Compare commits

..

No commits in common. "26d354c5bdf4a47879758227302694f90100f43f" and "a249f9b0eae3dccbe378a36e567503cadd197bab" have entirely different histories.

3 changed files with 3 additions and 3 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/html/devel
BUILDDIR = _build/devel
else
BUILDDIR = _build
endif

View File

@ -10,7 +10,7 @@
<option value="/CommandStation-EX/"{% if version == "main" %} selected{% endif %}>
Production
</option>
<option value="/CommandStation-EX/devel/html/"{% if version == "devel" %} selected{% endif %}>
<option value="/CommandStation-EX/devel/"{% if version == "devel" %} selected{% endif %}>
Development
</option>
</select>

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\html\devel
set BUILDDIR=_build\devel
) else (
set BUILDDIR=_build
)