From 6ac3bdb23f0550e9bac5e88b8271058cf6f98650 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sun, 31 Dec 2017 10:34:44 -0700 Subject: [PATCH] Update install.ps1 --- windows/install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/install.ps1 b/windows/install.ps1 index 3133cd5..d677f12 100644 --- a/windows/install.ps1 +++ b/windows/install.ps1 @@ -172,7 +172,7 @@ Function Install-PostgresODBC() { Function Start-PSQL([string]$command) { $location = Get-Location - Set-Location "C:\Program Files\PostgreSQL\10.1\bin" + Set-Location "C:\Program Files\PostgreSQL\10\bin" .\psql.exe --username=postgres -c "$command" Set-Location $location }