Compare commits

..

3 Commits

Author SHA1 Message Date
Sergey Novikov 827ddfca6b
Merge e7cc716e87 into 5579816ed2 2026-02-18 18:31:51 -06:00
Brian e7cc716e87
Merge branch 'main' into feature/monorepo-support 2026-02-18 18:31:48 -06:00
Davor Racic 5579816ed2
fix: change default Codex install location from global to project (#1698) 2026-02-18 18:30:22 -06:00
1 changed files with 2 additions and 2 deletions

View File

@ -23,9 +23,9 @@ class CodexSetup extends BaseIdeSetup {
* @returns {Object} Collected configuration * @returns {Object} Collected configuration
*/ */
async collectConfiguration(options = {}) { async collectConfiguration(options = {}) {
// Non-interactive mode: use default (global) // Non-interactive mode: use default (project) - recommended for real work
if (options.skipPrompts) { if (options.skipPrompts) {
return { installLocation: 'global' }; return { installLocation: options.codexLocation || 'project' };
} }
let confirmed = false; let confirmed = false;