From f61f09a94035ec618105b260993418d77905d5f7 Mon Sep 17 00:00:00 2001 From: Reinier Criel Date: Mon, 10 Nov 2025 16:58:18 -0800 Subject: [PATCH] Fix logging --- packages/safe-chain/src/registryProxy/certUtils.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/safe-chain/src/registryProxy/certUtils.js b/packages/safe-chain/src/registryProxy/certUtils.js index 98795b1..0c59dbe 100644 --- a/packages/safe-chain/src/registryProxy/certUtils.js +++ b/packages/safe-chain/src/registryProxy/certUtils.js @@ -156,7 +156,6 @@ export async function isSafeChainCAInstalled() { /** * Installs the Safe Chain CA certificate in the OS trust store. - * Uses platform-specific commands. Optionally uses npm packages if available. * @returns {Promise} */ export async function installSafeChainCA() { @@ -169,7 +168,7 @@ export async function installSafeChainCA() { return; } - ui.writeInformation("Safe-chain: Installing CA certificate to trust store."); + ui.writeInformation("Safe-chain: Installing CA certificate to trust store. This may require elevated permissions."); if (platform === OS_DARWIN) { // macOS: Install into user trust store