multi-agents-cli 1.1.37 → 1.1.38
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/init.js +5 -5
- package/package.json +1 -1
package/init.js
CHANGED
|
@@ -90,13 +90,13 @@ if (isReInit) {
|
|
|
90
90
|
let gitOk = false;
|
|
91
91
|
try {
|
|
92
92
|
execSync('git init -b main', { cwd: targetDir, stdio: 'pipe' });
|
|
93
|
-
execSync('git commit --allow-empty -m "init: project created"', { cwd: targetDir, stdio: 'pipe' });
|
|
93
|
+
execSync('git commit --no-gpg-sign --allow-empty -m "init: project created"', { cwd: targetDir, stdio: 'pipe' });
|
|
94
94
|
gitOk = true;
|
|
95
95
|
} catch {
|
|
96
96
|
try {
|
|
97
97
|
execSync('git init', { cwd: targetDir, stdio: 'pipe' });
|
|
98
98
|
execSync('git checkout -b main', { cwd: targetDir, stdio: 'pipe' });
|
|
99
|
-
execSync('git commit --allow-empty -m "init: project created"', { cwd: targetDir, stdio: 'pipe' });
|
|
99
|
+
execSync('git commit --no-gpg-sign --allow-empty -m "init: project created"', { cwd: targetDir, stdio: 'pipe' });
|
|
100
100
|
gitOk = true;
|
|
101
101
|
} catch { /* both attempts failed */ }
|
|
102
102
|
}
|
|
@@ -150,13 +150,13 @@ if (isGlobalCLI) {
|
|
|
150
150
|
let gitOk = false;
|
|
151
151
|
try {
|
|
152
152
|
execSync('git init -b main', { cwd: targetDir, stdio: 'pipe' });
|
|
153
|
-
execSync('git commit --allow-empty -m "init: project created"', { cwd: targetDir, stdio: 'pipe' });
|
|
153
|
+
execSync('git commit --no-gpg-sign --allow-empty -m "init: project created"', { cwd: targetDir, stdio: 'pipe' });
|
|
154
154
|
gitOk = true;
|
|
155
155
|
} catch {
|
|
156
156
|
try {
|
|
157
157
|
execSync('git init', { cwd: targetDir, stdio: 'pipe' });
|
|
158
158
|
execSync('git checkout -b main', { cwd: targetDir, stdio: 'pipe' });
|
|
159
|
-
execSync('git commit --allow-empty -m "init: project created"', { cwd: targetDir, stdio: 'pipe' });
|
|
159
|
+
execSync('git commit --no-gpg-sign --allow-empty -m "init: project created"', { cwd: targetDir, stdio: 'pipe' });
|
|
160
160
|
gitOk = true;
|
|
161
161
|
} catch { /* both attempts failed */ }
|
|
162
162
|
}
|
|
@@ -734,7 +734,7 @@ Before starting any task, verify:
|
|
|
734
734
|
let configCommitOk = false;
|
|
735
735
|
try {
|
|
736
736
|
execSync('git add .', { cwd: ROOT, stdio: 'pipe' });
|
|
737
|
-
execSync('git commit -m "init: project configuration"', { cwd: ROOT, stdio: 'pipe' });
|
|
737
|
+
execSync('git commit --no-gpg-sign -m "init: project configuration"', { cwd: ROOT, stdio: 'pipe' });
|
|
738
738
|
console.log(` ${green('✓')} Project configuration committed`);
|
|
739
739
|
configCommitOk = true;
|
|
740
740
|
} catch {
|
package/package.json
CHANGED