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 e1ed0e9 commit 77f8a27Copy full SHA for 77f8a27
.github/workflows/test-metatrader5-integration.yml
@@ -24,7 +24,6 @@ jobs:
24
Write-Host "Download completed. File size: $((Get-Item $output).Length) bytes"
25
26
- name: Install MetaTrader5
27
- shell: pwsh
28
run: |
29
$process = Start-Process -FilePath ".\mt5setup.exe" -ArgumentList "/auto", "/portable" -PassThru
30
$process.WaitForExit(300000)
@@ -33,14 +32,8 @@ jobs:
33
32
Stop-Process -Id $process.Id -Force
34
exit 1
35
}
+ shell: pwsh
36
37
- # Verify installation
38
- if (-not (Test-Path "$installDir\terminal64.exe")) {
39
- Write-Host "Directory contents:"
40
- Get-ChildItem $installDir -Recurse
41
- Write-Error "Installation failed - terminal64.exe not found"
42
- exit 1
43
- }
44
45
- name: Launch MT5
46
shell: pwsh
0 commit comments