Skip to content

Commit

Permalink
Fix zope.mk, wrong config file was passed to zconsole
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens committed Jan 16, 2025
1 parent 09307da commit 28b4a1d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
## 1.0a9 (unreleased)


- Nothing changed yet.
- Fix `zope.mk`, wrong config file was passed to zconsole.
Now zope-debug and zope-runscript are functional.


## 1.0a8 (2024-10-24)
Expand Down
4 changes: 2 additions & 2 deletions src/mxmake/topics/applications/zope.mk
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@ zope-start: $(ZOPE_RUN_TARGET)
.PHONY: zope-debug
zope-debug: $(ZOPE_RUN_TARGET)
@echo "Start Zope/Plone with configuration in $(ZOPE_INSTANCE_FOLDER)"
@zconsole debug "$(ZOPE_INSTANCE_FOLDER)/etc/zope.ini"
@zconsole debug "$(ZOPE_INSTANCE_FOLDER)/etc/zope.conf"

.PHONY: zope-runscript
zope-runscript: $(ZOPE_RUN_TARGET)
@echo "Run Zope/Plone Console Script $(ZOPE_SCRIPTNAME) in $(ZOPE_INSTANCE_FOLDER)"
@zconsole run "$(ZOPE_INSTANCE_FOLDER)/etc/zope.ini" $(ZOPE_SCRIPTNAME)
@zconsole run "$(ZOPE_INSTANCE_FOLDER)/etc/zope.conf" $(ZOPE_SCRIPTNAME)

.PHONY: zope-dirty
zope-dirty:
Expand Down

0 comments on commit 28b4a1d

Please sign in to comment.