Skip to content

Commit

Permalink
create msi
Browse files Browse the repository at this point in the history
  • Loading branch information
dphulkar-msft committed Nov 25, 2024
1 parent 56f968d commit a18d80d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup/create_windows_msi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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..."
Expand Down Expand Up @@ -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!"

0 comments on commit a18d80d

Please sign in to comment.