Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
gtrevi committed Mar 12, 2024
1 parent f950fde commit d415584
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/check_msi_installation.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function Install-MsiPackage {

$res = $true

$arguments = "/i $MsiPath /qn /norestart /l*vx /log msi-install.log $MsiAdditionalArguments"
$arguments = "/i $MsiPath /qn /norestart /l*v msi-install.log $MsiAdditionalArguments"
Write-Host "Installing MSI package with arguments: '$arguments'..."
$process = Start-Process -FilePath msiexec.exe -ArgumentList $arguments -Wait -PassThru
if ($process.ExitCode -eq 0) {
Expand Down
2 changes: 1 addition & 1 deletion scripts/install_ebpf.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ function Install-eBPFComponents

# Install the MSI package.
try {
$arguments = "/i $MsiPath /qn /norestart /l*vx /log msi-install.log ADDLOCAL=ADDLOCAL=eBPF_Runtime_Components,eBPF_Runtime_Components_JIT"
$arguments = "/i $MsiPath /qn /norestart /l*v msi-install.log ADDLOCAL=ADDLOCAL=eBPF_Runtime_Components,eBPF_Runtime_Components_JIT"
Write-Host "Installing the eBPF MSI package with arguments: '$arguments'..."
$process = Start-Process -FilePath msiexec.exe -ArgumentList $arguments -Wait -PassThru
if ($process.ExitCode -ne 0) {
Expand Down

0 comments on commit d415584

Please sign in to comment.