From 02206e87a559fe65abe64305114ce52fd9ac0fb3 Mon Sep 17 00:00:00 2001 From: QWsin Date: Mon, 30 Mar 2026 14:08:08 +0800 Subject: [PATCH] fix(hooks): remove external repo URL from tip message BurntToast module is a well-known Microsoft module but per project policy avoiding unvetted external links in user-facing output. --- scripts/hooks/desktop-notify.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/hooks/desktop-notify.js b/scripts/hooks/desktop-notify.js index 3d9a79ed..7ea23208 100644 --- a/scripts/hooks/desktop-notify.js +++ b/scripts/hooks/desktop-notify.js @@ -144,8 +144,7 @@ function run(raw) { log(`[DesktopNotify] "${ps.path}" -Command "Install-Module -Name BurntToast -Scope CurrentUser"`); } else { // No PowerShell found - log('[DesktopNotify] Tip: Install BurntToast in PowerShell for notifications:'); - log('[DesktopNotify] https://github.com/microsoft/BurntToast'); + log('[DesktopNotify] Tip: Install BurntToast module in PowerShell for notifications'); } } } catch (err) {