mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
PostgreSQL: Remove from PATH/Add environment variables. (#1099)
* Removed PostgreSQL server from path. * Added new Paths * added another solution for documentation * Fixed path in generator.
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
$pgReady = Start-Process -FilePath pg_isready -Wait -PassThru
|
||||
$pgReadyPath = Join-Path $PGBIN "pg_isready.exe"
|
||||
$pgReady = Start-Process -FilePath $pgReadyPath -Wait -PassThru
|
||||
$exitCode = $pgReady.ExitCode
|
||||
|
||||
if ($exitCode -eq 0)
|
||||
|
||||
Reference in New Issue
Block a user