@kody-ade/kody-engine-lite 0.1.78 → 0.1.80
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/bin/cli.js +1 -1
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -4792,7 +4792,7 @@ REMINDER: Output the full prompt template first (unchanged), then your three app
|
|
|
4792
4792
|
if (filesToCommit.length > 0) {
|
|
4793
4793
|
try {
|
|
4794
4794
|
if (isCI3) {
|
|
4795
|
-
const branchName = `kody
|
|
4795
|
+
const branchName = `kody-bootstrap-${Date.now()}`;
|
|
4796
4796
|
execFileSync11("git", ["checkout", "-b", branchName], { cwd, stdio: "pipe" });
|
|
4797
4797
|
execFileSync11("git", ["add", ...filesToCommit], { cwd, stdio: "pipe" });
|
|
4798
4798
|
const staged = execFileSync11("git", ["diff", "--cached", "--name-only"], { cwd, encoding: "utf-8" }).trim();
|