From 19eb3289e12836f61174e59bbe781cf2651ec0cb Mon Sep 17 00:00:00 2001 From: Vladimir Stoilov Date: Thu, 23 May 2024 15:34:25 +0300 Subject: [PATCH] [windows_kext] Fix echo in build_cab.ps1 --- windows_kext/release/templates/build_cab.ps1 | 26 ++++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/windows_kext/release/templates/build_cab.ps1 b/windows_kext/release/templates/build_cab.ps1 index bec9e936..920bc823 100644 --- a/windows_kext/release/templates/build_cab.ps1 +++ b/windows_kext/release/templates/build_cab.ps1 @@ -22,27 +22,27 @@ if(!$?) { move {{sys_file}} cab\\{{sys_file}} move {{pdb_file}} cab\\{{pdb_file}} -echo. -echo ===== -echo creating .cab ... +Write-Host +Write-Host ===== +Write-Host creating .cab ... MakeCab /f {{version_file}}.ddf if(!$?) { Exit $LASTEXITCODE } -echo. -echo ===== -echo cleaning up ... +Write-Host +Write-Host ===== +Write-Host cleaning up ... del setup.inf del setup.rpt move disk1\\{{version_file}}.cab {{version_file}}.cab rmdir disk1 -echo. -echo ===== -echo YOUR TURN: sign the .cab -echo use something along the lines of: -echo. -echo signtool sign /sha1 C2CBB3A0256A157FEB08B661D72BF490B68724C4 /tr http://timestamp.digicert.com /td sha256 /fd sha256 /a {{version_file}}.cab -echo. \ No newline at end of file +Write-Host +Write-Host ===== +Write-Host YOUR TURN: sign the .cab +Write-Host use something along the lines of: +Write-Host +Write-Host signtool sign /sha1 C2CBB3A0256A157FEB08B661D72BF490B68724C4 /tr http://timestamp.digicert.com /td sha256 /fd sha256 /a {{version_file}}.cab +Write-Host