You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The --engine option's value function was calling executionEngine() during
Cliffy's option parsing phase, which happens before the action handler runs
initializeProjectContextAndEngines(). This caused "Unknown --engine" errors
for all engines since they weren't registered yet.
Solution:
- Simplified value function to only parse engine:kernel syntax
- Moved engine validation to action handler after initialization
- Added better error message showing available engines
Fixes: quarto create-project --engine markdown (and other engines)
0 commit comments