blun-king-cli 9.1.339 → 9.1.340
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/blun.mjs +2 -1
- package/package.json +1 -1
package/blun.mjs
CHANGED
|
@@ -340412,7 +340412,8 @@ function getUpdateStateFile() {
|
|
|
340412
340412
|
* Return the update install state file: `<dataDir>/updates/install.json`.
|
|
340413
340413
|
*/
|
|
340414
340414
|
function getUpdateInstallStateFile() {
|
|
340415
|
-
|
|
340415
|
+
const sharedHome = process.env["BLUN_SHARED_HOME"]?.trim();
|
|
340416
|
+
return join(sharedHome || getDataDir(), BLUN_UPDATE_DIR_NAME, BLUN_UPDATE_INSTALL_STATE_FILE_NAME);
|
|
340416
340417
|
}
|
|
340417
340418
|
/**
|
|
340418
340419
|
* Return the rollout decision log: `<dataDir>/updates/rollout.log`.
|