Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
jiri-bobek committed Oct 4, 2024
1 parent dfb90cc commit 1c9dcf4
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,26 @@ jobs:
steps:
- name: Download and install Microsoft Visual C++ 2010 Redistributable (x64)
run: |
Get-Command -Name msvcp100.dll
Get-Command -Name msvcr100.dll
try {
Get-Command -Name msvcp100.dll
} catch {
Write-Error msvcp100.dll not found
}
try {
Get-Command -Name msvcr100.dll
} catch {
Write-Error msvcr100.dll not found
}
curl -L -o vcredist_x64.exe https://download.microsoft.com/download/1/1/0/110d9ed4-0761-4390-936e-0d66b0d192c3/vcredist_x64.exe
.\vcredist_x64.exe /quiet /norestart
Get-Command -Name msvcp100.dll
Get-Command -Name msvcr100.dll
try {
Get-Command -Name msvcp100.dll
} catch {
Write-Error msvcp100.dll not found
}
try {
Get-Command -Name msvcr100.dll
} catch {
Write-Error msvcr100.dll not found
}
shell: pwsh

0 comments on commit 1c9dcf4

Please sign in to comment.