diff --git a/setup/create_windows_msi.yml b/setup/create_windows_msi.yml index f25d8d31e..aeb203c49 100644 --- a/setup/create_windows_msi.yml +++ b/setup/create_windows_msi.yml @@ -33,7 +33,7 @@ steps: $outputMsi = "${{ parameters.build_dir }}\azcopy.msi" Write-Host "Work dir: $workDir WiX Toolset Path: $wixToolsPath" - #cd $msiDir + cd $msiDir # Step 2: Update the fields in the .wxs file Write-Host "Updating Uuid in .wxs file..." @@ -97,9 +97,15 @@ steps: & "$wixToolsPath\light.exe" -out $outputMsi $wixObjPath -b $workDir -sw1055 Write-Host "MSI creation with embedded CAB completed!" + Write-Host "Work Dir: $workDir" + Get-ChildItem -Path $workDir -Filter "*.cab" + Write-Host "Work Dir: $msiDir" Get-ChildItem -Path $msiDir -Filter "*.cab" | Format-Table Name, FullName + Write-Host "output msi Dir: $outputMsi" + Get-ChildItem -Path $outputMsi -Filter "*.cab" | Format-Table Name, FullName + Write-Host "MSI creation process completed!" \ No newline at end of file