Skip to content

Commit 85b0e06

Browse files
win,tools: add description to signature
When signing files for Windows, add "Node.js" as the description. PR-URL: #59877 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Daeyeon Jeong <[email protected]> Reviewed-By: Stefan Stojanovic <[email protected]>
1 parent 947ea53 commit 85b0e06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/sign.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ if "%AZURE_SIGN_METADATA_PATH%"=="" (
2020
)
2121

2222

23-
signtool sign /tr "http://timestamp.acs.microsoft.com" /td sha256 /fd sha256 /v /dlib %AZURE_SIGN_DLIB_PATH% /dmdf %AZURE_SIGN_METADATA_PATH% %1
23+
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
2424
if not ERRORLEVEL 1 (
2525
echo Successfully signed %1 using signtool
2626
exit /b 0
2727
)
2828
echo Could not sign %1 using signtool
29-
exit /b 1
29+
exit /b 1

0 commit comments

Comments
 (0)