@robbiesrobotics/alice-agents 1.4.7 → 1.4.9
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/alice-install.mjs +4 -4
- package/lib/installer.mjs +1 -1
- package/package.json +1 -1
package/bin/alice-install.mjs
CHANGED
|
@@ -78,17 +78,17 @@ if (flags.has('--doctor')) {
|
|
|
78
78
|
cloudTeamSlug: getFlagValue('--cloud-team-slug'),
|
|
79
79
|
cloudTeamName: getFlagValue('--cloud-team-name'),
|
|
80
80
|
cloudTeamPlan: getFlagValue('--cloud-team-plan'),
|
|
81
|
-
}).catch((err) => {
|
|
81
|
+
}).then(() => process.exit(0)).catch((err) => {
|
|
82
82
|
console.error(' ❌ Update failed:', err.message);
|
|
83
83
|
process.exit(1);
|
|
84
84
|
});
|
|
85
85
|
} else if (flags.has('--skills')) {
|
|
86
|
-
runSkillsManager().catch((err) => {
|
|
86
|
+
runSkillsManager().then(() => process.exit(0)).catch((err) => {
|
|
87
87
|
console.error(` ✗ Skills manager failed: ${err.message}`);
|
|
88
88
|
process.exit(1);
|
|
89
89
|
});
|
|
90
90
|
} else if (flags.has('--uninstall')) {
|
|
91
|
-
runUninstall({ yes: flags.has('--yes') }).catch((err) => {
|
|
91
|
+
runUninstall({ yes: flags.has('--yes') }).then(() => process.exit(0)).catch((err) => {
|
|
92
92
|
console.error(' ❌ Uninstall failed:', err.message);
|
|
93
93
|
process.exit(1);
|
|
94
94
|
});
|
|
@@ -106,7 +106,7 @@ if (flags.has('--doctor')) {
|
|
|
106
106
|
cloudTeamSlug: getFlagValue('--cloud-team-slug'),
|
|
107
107
|
cloudTeamName: getFlagValue('--cloud-team-name'),
|
|
108
108
|
cloudTeamPlan: getFlagValue('--cloud-team-plan'),
|
|
109
|
-
}).catch((err) => {
|
|
109
|
+
}).then(() => process.exit(0)).catch((err) => {
|
|
110
110
|
console.error(' ❌ Install failed:', err.message);
|
|
111
111
|
process.exit(1);
|
|
112
112
|
});
|
package/lib/installer.mjs
CHANGED
|
@@ -614,7 +614,7 @@ export async function runInstall(options = {}) {
|
|
|
614
614
|
const { checkProLicense, validateLicenseRemote, storeLicense, isValidFormat } = await import('./license.mjs');
|
|
615
615
|
const explicitLicenseKey = String(options.licenseKey || '').trim();
|
|
616
616
|
|
|
617
|
-
const existing = await checkProLicense(
|
|
617
|
+
const existing = await checkProLicense();
|
|
618
618
|
|
|
619
619
|
if (existing.licensed) {
|
|
620
620
|
if (existing.provisional) {
|