Skip to content

Commit 8ac9a4c

Browse files
committed
Critical fix: SOURCES_TARGET used mxdev wrongly with -o (offline) option.
The offline option had a bug and was fixed in mxdev [#34](mxstack/mxdev#34) and released with mxdev>=5. This fix switches from `-o` to the correct `-f` (no fetch from vcs). To update your makefile use `mxmake update` in the folder with your `Makefile`.
1 parent 5eed546 commit 8ac9a4c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## 1.3.1 (unreleased)
44

5+
- Critical fix: `SOURCES_TARGET` used mxdev wrongly with `-o` (offline) option.
6+
The offline option had a bug and was fixed in mxdev [#34](https://github.com/mxstack/mxdev/issues/34) and released with mxdev>=5.
7+
This fix switches from `-o` to the correct `-f` (no fetch from vcs).
8+
To update your makefile use `mxmake update` in the folder with your `Makefile`.
59
- Fix: theme for newer Sphinx 7.x.
610
- Fix: interactive uv venv, use --allow-existing instead.
711
- Feature: Add support for Python 3.14.

src/mxmake/topics/core/sources.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
SOURCES_TARGET:=$(SENTINEL_FOLDER)/sources.sentinel
2121
$(SOURCES_TARGET): $(PROJECT_CONFIG) $(MXENV_TARGET)
2222
@echo "Checkout project sources"
23-
@mxdev -o -c $(PROJECT_CONFIG)
23+
@mxdev -f -c $(PROJECT_CONFIG)
2424
@touch $(SOURCES_TARGET)
2525

2626
.PHONY: sources

0 commit comments

Comments
 (0)