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 5a58293 commit ab59016Copy full SHA for ab59016
Provider/tests.ps1
@@ -62,7 +62,9 @@ function Prepare() {
62
ni firebird.log -ItemType File | Out-Null
63
64
echo "Starting Firebird"
65
- $script:firebirdProcess = Start-Process -FilePath $selectedConfiguration.Executable -ArgumentList $selectedConfiguration.Args -PassThru
+ $process = Start-Process -FilePath $selectedConfiguration.Executable -ArgumentList $selectedConfiguration.Args -PassThru
66
+ echo "Version: $($process.MainModule.FileVersionInfo.FileVersion)"
67
+ $script:firebirdProcess = $process
68
69
echo "=== END ==="
70
}
0 commit comments