@aiyiran/myclaw 1.1.3 → 1.1.4
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/index.js +3 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1077,7 +1077,7 @@ function runNuke(cliArgs) {
|
|
|
1077
1077
|
console.log(' 此命令将执行以下操作:');
|
|
1078
1078
|
console.log(' 1. ' + colors.red + 'rm -rf /root/.openclaw' + colors.nc);
|
|
1079
1079
|
console.log(' 2. ' + colors.red + 'rm -rf ~/.openclaw' + colors.nc);
|
|
1080
|
-
console.log(' 3. openclaw onboard --non-interactive --accept-risk');
|
|
1080
|
+
console.log(' 3. openclaw onboard --non-interactive --accept-risk --skip-health');
|
|
1081
1081
|
console.log(' 4. mc up');
|
|
1082
1082
|
console.log(' 5. mc patch');
|
|
1083
1083
|
console.log(' 6. mc restart');
|
|
@@ -1119,9 +1119,9 @@ function runNuke(cliArgs) {
|
|
|
1119
1119
|
console.log('');
|
|
1120
1120
|
|
|
1121
1121
|
// Step 3: openclaw onboard
|
|
1122
|
-
console.log('[3/6] openclaw onboard --non-interactive --accept-risk');
|
|
1122
|
+
console.log('[3/6] openclaw onboard --non-interactive --accept-risk --skip-health');
|
|
1123
1123
|
try {
|
|
1124
|
-
execSync('openclaw onboard --non-interactive --accept-risk', { stdio: 'inherit' });
|
|
1124
|
+
execSync('openclaw onboard --non-interactive --accept-risk --skip-health', { stdio: 'inherit' });
|
|
1125
1125
|
console.log(' ' + colors.green + '✓ 完成' + colors.nc);
|
|
1126
1126
|
} catch (err) {
|
|
1127
1127
|
console.log(' ' + colors.red + '✗ 失败: ' + err.message + colors.nc);
|