From 3c63be16f66fdf8996f6063b1bf89a6f7fcdef89 Mon Sep 17 00:00:00 2001 From: Pavlo Golub Date: Thu, 19 Aug 2021 12:54:18 +0200 Subject: [PATCH] PostgreSQL not Postgre SQL (#3931) https://wiki.postgresql.org/wiki/Postgres --- .../scripts/SoftwareReport/SoftwareReport.Databases.psm1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/linux/scripts/SoftwareReport/SoftwareReport.Databases.psm1 b/images/linux/scripts/SoftwareReport/SoftwareReport.Databases.psm1 index 8bcb840e0..bee22b0ac 100644 --- a/images/linux/scripts/SoftwareReport/SoftwareReport.Databases.psm1 +++ b/images/linux/scripts/SoftwareReport/SoftwareReport.Databases.psm1 @@ -1,7 +1,7 @@ function Get-PostgreSqlVersion { $postgreSQLVersion = psql --version | Take-OutputPart -Part 2 $aptSourceRepo = Get-AptSourceRepository -PackageName "postgresql" - return "Postgre SQL $postgreSQLVersion (apt source repository: $aptSourceRepo)" + return "PostgreSQL $postgreSQLVersion (apt source repository: $aptSourceRepo)" } function Get-MongoDbVersion { @@ -55,4 +55,4 @@ function Build-MSSQLToolsSection { ) return $output -} \ No newline at end of file +}