pigmalion-setup 0.1.9 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cli.js +5 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -166,7 +166,11 @@ async function runCodex(codexCmd) {
|
|
|
166
166
|
const ext = path.extname(codexCmd).toLowerCase();
|
|
167
167
|
const useShell = process.platform === "win32" && (ext === ".cmd" || ext === ".ps1");
|
|
168
168
|
|
|
169
|
-
const
|
|
169
|
+
const prompt = [
|
|
170
|
+
`"Lee y sigue estrictamente SETUP.md en: ${setupPath} y luego termina."`
|
|
171
|
+
].join("\n");
|
|
172
|
+
|
|
173
|
+
const child = spawn(codexCmd, [prompt], {
|
|
170
174
|
stdio: 'inherit',
|
|
171
175
|
shell: useShell,
|
|
172
176
|
cwd: TARGET_DIR
|