Fix logging

This commit is contained in:
Reinier Criel 2025-11-10 16:58:18 -08:00
parent fc6b0b4b5e
commit f61f09a940

View file

@ -156,7 +156,6 @@ export async function isSafeChainCAInstalled() {
/** /**
* Installs the Safe Chain CA certificate in the OS trust store. * Installs the Safe Chain CA certificate in the OS trust store.
* Uses platform-specific commands. Optionally uses npm packages if available.
* @returns {Promise<void>} * @returns {Promise<void>}
*/ */
export async function installSafeChainCA() { export async function installSafeChainCA() {
@ -169,7 +168,7 @@ export async function installSafeChainCA() {
return; 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) { if (platform === OS_DARWIN) {
// macOS: Install into user trust store // macOS: Install into user trust store