Skip to content

Commit ab59016

Browse files
committed
File version visible in tests
1 parent 5a58293 commit ab59016

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Provider/tests.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@ function Prepare() {
6262
ni firebird.log -ItemType File | Out-Null
6363

6464
echo "Starting Firebird"
65-
$script:firebirdProcess = Start-Process -FilePath $selectedConfiguration.Executable -ArgumentList $selectedConfiguration.Args -PassThru
65+
$process = Start-Process -FilePath $selectedConfiguration.Executable -ArgumentList $selectedConfiguration.Args -PassThru
66+
echo "Version: $($process.MainModule.FileVersionInfo.FileVersion)"
67+
$script:firebirdProcess = $process
6668

6769
echo "=== END ==="
6870
}

0 commit comments

Comments
 (0)