@geminilight/mindos 0.1.5 → 0.1.6
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/cli.js +2 -2
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -811,9 +811,9 @@ ${dim('Shortcut: mindos start --daemon → install + start in one step')}
|
|
|
811
811
|
})();
|
|
812
812
|
console.log(`\n${bold('⬆ Updating MindOS...')} ${dim(`(current: ${currentVersion})`)}\n`);
|
|
813
813
|
try {
|
|
814
|
-
execSync('npm install -g mindos@latest', { stdio: 'inherit' });
|
|
814
|
+
execSync('npm install -g @geminilight/mindos@latest', { stdio: 'inherit' });
|
|
815
815
|
} catch {
|
|
816
|
-
console.error(red('Update failed. Try: npm install -g mindos@latest'));
|
|
816
|
+
console.error(red('Update failed. Try: npm install -g @geminilight/mindos@latest'));
|
|
817
817
|
process.exit(1);
|
|
818
818
|
}
|
|
819
819
|
// Clear build stamp so next `mindos start` rebuilds if version changed
|
package/package.json
CHANGED