From 66eb6d187850167ed6868d720f4deef62b1889ae Mon Sep 17 00:00:00 2001 From: Dmitry Shibanov Date: Mon, 3 Feb 2020 09:37:47 +0300 Subject: [PATCH] remove extra () --- images/linux/scripts/installers/postgresql.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/linux/scripts/installers/postgresql.sh b/images/linux/scripts/installers/postgresql.sh index b31506719..9f2988a84 100644 --- a/images/linux/scripts/installers/postgresql.sh +++ b/images/linux/scripts/installers/postgresql.sh @@ -13,4 +13,4 @@ apt-get install libpq-dev echo "Install Postgresql Client" apt-get install postgresql-client -DocumentInstalledItem "($(psql -V 2>&1 | cut -d ' ' -f 1,2,3))" \ No newline at end of file +DocumentInstalledItem "$(psql -V 2>&1 | cut -d ' ' -f 1,2,3)" \ No newline at end of file