claude-issue-solver 1.36.0 → 1.38.0
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/dist/commands/review.js
CHANGED
|
@@ -268,8 +268,8 @@ fi
|
|
|
268
268
|
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
|
|
269
269
|
echo ""
|
|
270
270
|
|
|
271
|
-
# Keep terminal open
|
|
272
|
-
exec bash
|
|
271
|
+
# Keep terminal open with minimal shell (skip rc files to avoid prompts)
|
|
272
|
+
exec bash --norc --noprofile
|
|
273
273
|
`;
|
|
274
274
|
fs.writeFileSync(runnerScript, runnerContent, { mode: 0o755 });
|
|
275
275
|
console.log();
|
|
@@ -556,8 +556,8 @@ fi
|
|
|
556
556
|
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
|
|
557
557
|
echo ""
|
|
558
558
|
|
|
559
|
-
# Keep terminal open
|
|
560
|
-
exec bash
|
|
559
|
+
# Keep terminal open with minimal shell (skip rc files to avoid prompts)
|
|
560
|
+
exec bash --norc --noprofile
|
|
561
561
|
`;
|
|
562
562
|
fs.writeFileSync(runnerScript, runnerContent, { mode: 0o755 });
|
|
563
563
|
console.log(chalk_1.default.dim(` Starting review for PR #${pr.number}: ${pr.title.slice(0, 50)}...`));
|
package/dist/commands/solve.js
CHANGED
|
@@ -227,8 +227,8 @@ echo "To clean up after merge: claude-issue clean ${issueNumber}"
|
|
|
227
227
|
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
|
|
228
228
|
echo ""
|
|
229
229
|
|
|
230
|
-
# Keep terminal open
|
|
231
|
-
exec bash
|
|
230
|
+
# Keep terminal open with minimal shell (skip rc files to avoid prompts)
|
|
231
|
+
exec bash --norc --noprofile
|
|
232
232
|
`;
|
|
233
233
|
fs.writeFileSync(runnerScript, runnerContent, { mode: 0o755 });
|
|
234
234
|
console.log();
|