Skip to content

Commit ec3be17

Browse files
committed
Update msi regex
1 parent 7eb5657 commit ec3be17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SHIR/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function Write-Log($Message) {
88
function Install-SHIR() {
99
Write-Log "Install the Self-hosted Integration Runtime in the Windows container"
1010

11-
$MsiFileName = (Get-ChildItem -Path C:\SHIR | Where-Object { $_.Name -match [regex] "IntegrationRuntime_.*.msi" })[0].Name
11+
$MsiFileName = (Get-ChildItem -Path C:\SHIR | Where-Object { $_.Name -match [regex] "IntegrationRuntime.*.msi" })[0].Name
1212
Write-Log $MsiFileName
1313

1414
Start-Process msiexec.exe -Wait -ArgumentList "/i C:\SHIR\$MsiFileName /qn"

0 commit comments

Comments
 (0)