clementine-agent 1.1.30 → 1.1.31
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/dist/cli/index.js +4 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -3639,7 +3639,10 @@ async function cmdUpdate(options) {
|
|
|
3639
3639
|
// Ensure build output is fully flushed before spawning new process
|
|
3640
3640
|
execSync('sync', { stdio: 'pipe' });
|
|
3641
3641
|
console.log(` ${S()} Restarting daemon...`);
|
|
3642
|
-
|
|
3642
|
+
// Let the keychain wizard fire here too — for users on launchd who only
|
|
3643
|
+
// ever run `clementine update` (the daemon respawns automatically), this
|
|
3644
|
+
// is their one chance to see the prompt and repair legacy ACLs.
|
|
3645
|
+
await cmdLaunch({});
|
|
3643
3646
|
}
|
|
3644
3647
|
// 13. Post-restart health check — verify daemon started and channels connected
|
|
3645
3648
|
if (options.restart || wasRunning) {
|