blun-king-cli 9.1.292 → 9.1.293
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/launcher-runtime.js +0 -10
- package/package.json +1 -1
package/bin/launcher-runtime.js
CHANGED
|
@@ -34,7 +34,6 @@ const {
|
|
|
34
34
|
RUNNING_UPDATE_HANDOFF_EXIT_CODE,
|
|
35
35
|
RUNNING_UPDATE_HANDOFF_MESSAGE,
|
|
36
36
|
RUNNING_UPDATE_MODE_MESSAGE,
|
|
37
|
-
RUNNING_UPDATE_PREPARED_MESSAGE,
|
|
38
37
|
RUNTIME_EXIT_INTENT_MESSAGE,
|
|
39
38
|
activateRuntime,
|
|
40
39
|
clearActiveRuntime,
|
|
@@ -380,15 +379,6 @@ async function superviseProtectedCore(args, env, cwd, releaseNotice, options = {
|
|
|
380
379
|
toVersion: target.version,
|
|
381
380
|
runningVersion,
|
|
382
381
|
}, { now: options.nowImpl });
|
|
383
|
-
if (previousTarget === undefined && child?.connected === true) {
|
|
384
|
-
try {
|
|
385
|
-
child.send({
|
|
386
|
-
type: RUNNING_UPDATE_PREPARED_MESSAGE,
|
|
387
|
-
version: target.version,
|
|
388
|
-
mode: runningUpdateMode,
|
|
389
|
-
});
|
|
390
|
-
} catch {}
|
|
391
|
-
}
|
|
392
382
|
Promise.resolve((options.pruneRunningUpdateReleases || pruneRunningUpdateReleases)(sharedHome, {
|
|
393
383
|
activePackageRoot: packageRoot,
|
|
394
384
|
})).catch((error) => options.onRunningUpdateError?.(error));
|