| Revision 1282,
374 bytes
checked in by lowjoel, 4 years ago
(diff) |
|
Use directory-relative for syntax. Fixes the signing in builds.
|
| Line | |
|---|
| 1 | setlocal EnableDelayedExpansion |
|---|
| 2 | for /r "%~1\bin\Release\" %%i in (*.dll) do set binaries=!binaries! "%%i" |
|---|
| 3 | for /r "%~1\bin\Release\" %%i in (*.exe) do ( |
|---|
| 4 | set j=%%i |
|---|
| 5 | if "!j:~-10!" neq "vshost.exe" ( |
|---|
| 6 | if "!j:~-16!" neq "Bootstrapper.exe" ( |
|---|
| 7 | set binaries=!binaries! "%%i" |
|---|
| 8 | ) |
|---|
| 9 | ) |
|---|
| 10 | ) |
|---|
| 11 | |
|---|
| 12 | signtool sign /a /t http://timestamp.verisign.com/scripts/timestamp.dll !binaries! |
|---|
Note: See
TracBrowser
for help on using the repository browser.