From 85b0e0616a0abc85700536404256ea9a99982a41 Mon Sep 17 00:00:00 2001 From: Martin Costello Date: Fri, 3 Oct 2025 23:33:35 +0100 Subject: [PATCH] win,tools: add description to signature When signing files for Windows, add "Node.js" as the description. PR-URL: https://github.com/nodejs/node/pull/59877 Reviewed-By: James M Snell Reviewed-By: Luigi Pinca Reviewed-By: Daeyeon Jeong Reviewed-By: Stefan Stojanovic --- tools/sign.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/sign.bat b/tools/sign.bat index 607eb6de79..819e64cd92 100644 --- a/tools/sign.bat +++ b/tools/sign.bat @@ -20,10 +20,10 @@ if "%AZURE_SIGN_METADATA_PATH%"=="" ( ) -signtool sign /tr "http://timestamp.acs.microsoft.com" /td sha256 /fd sha256 /v /dlib %AZURE_SIGN_DLIB_PATH% /dmdf %AZURE_SIGN_METADATA_PATH% %1 +signtool sign /d "Node.js" /tr "http://timestamp.acs.microsoft.com" /td sha256 /fd sha256 /v /dlib %AZURE_SIGN_DLIB_PATH% /dmdf %AZURE_SIGN_METADATA_PATH% %1 if not ERRORLEVEL 1 ( echo Successfully signed %1 using signtool exit /b 0 ) echo Could not sign %1 using signtool -exit /b 1 \ No newline at end of file +exit /b 1