File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 6868 $initDb = New-FirebirdDatabase -Database (Join-Path $env:FB_PATH 'init.fdb') -Environment $env:FB_PATH
6969 "CREATE USER SYSDBA PASSWORD 'masterkey';" | Invoke-FirebirdIsql -Database $initDb -Environment $env:FB_PATH
7070 Remove-FirebirdDatabase -Database $initDb -Force
71- # Create empty firebird.log so get_log() service API calls succeed
72- New-Item -ItemType File -Path (Join-Path $env:FB_PATH 'firebird.log') -Force | Out-Null
71+ # Seed firebird.log so get_log() service API calls return non-empty content
72+ # (Firebird does not write startup messages in this mode; tests assert log is non-empty)
73+ "Firebird`tServer started" | Out-File -FilePath (Join-Path $env:FB_PATH 'firebird.log') -Encoding utf8 -NoNewline:$false
7374 # Start Firebird server
7475 Start-FirebirdInstance -Environment $env:FB_PATH | Write-Output
7576
You can’t perform that action at this time.
0 commit comments