We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bf8b7c commit 8d98042Copy full SHA for 8d98042
embeddable-dll-service/build.bat
@@ -23,6 +23,13 @@ if exist ..\.deps\prepared goto :build
23
call :build_plat amd64 x86_64 amd64 || goto :error
24
call :build_plat arm64 aarch64 arm64 || goto :error
25
26
+:sign
27
+ if exist ..\sign.bat call ..\sign.bat
28
+ if "%SigningCertificate%"=="" goto :success
29
+ if "%TimestampServer%"=="" goto :success
30
+ echo [+] Signing
31
+ signtool sign /sha1 "%SigningCertificate%" /fd sha256 /tr "%TimestampServer%" /td sha256 /d "WireGuard Tunnel" x86\tunnel.dll amd64\tunnel.dll arm64\tunnel.dll || goto :error
32
+
33
:success
34
echo [+] Success
35
exit /b 0
0 commit comments