We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c563124 commit 159befaCopy full SHA for 159befa
.github/workflows/test-metatrader5-integration.yml
@@ -25,7 +25,7 @@ jobs:
25
run: |
26
# Start installer with /auto and /portable, with timeout protection
27
$process = Start-Process -FilePath ".\mt5setup.exe" -ArgumentList "/auto", "/portable" -PassThru
28
- $process.WaitForExit(300) # 300 seconds = 5 minutes
+ $process.WaitForExit(300000) # 300 seconds = 5 minutes
29
if (-not $process.HasExited) {
30
Write-Host "MT5 installer stuck, killing..."
31
Stop-Process -Id $process.Id -Force
0 commit comments