hedgequantx 2.9.16 → 2.9.17
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/package.json +1 -1
- package/src/menus/dashboard.js +1 -4
package/package.json
CHANGED
package/src/menus/dashboard.js
CHANGED
|
@@ -243,10 +243,7 @@ const handleUpdate = async () => {
|
|
|
243
243
|
|
|
244
244
|
spinner.succeed(`UPDATED TO V${latestVersion}!`);
|
|
245
245
|
console.log(chalk.green('\n ✓ UPDATE SUCCESSFUL!'));
|
|
246
|
-
console.log(chalk.yellow('\n
|
|
247
|
-
|
|
248
|
-
// Small delay then exit - the user will run hqx again
|
|
249
|
-
await new Promise(r => setTimeout(r, 1500));
|
|
246
|
+
console.log(chalk.yellow('\n Run ') + chalk.cyan('hqx') + chalk.yellow(' to start the new version.\n'));
|
|
250
247
|
process.exit(0);
|
|
251
248
|
|
|
252
249
|
} catch (error) {
|