Skip to content
This repository was archived by the owner on Oct 10, 2023. It is now read-only.

Commit 61d980e

Browse files
author
Alexander Lakhin
committed
Merge branch 'master' into 'master'
Remove unnecessary check from workaround for isolationtester See merge request automation/pg-tests!1347
2 parents d376f47 + 1977d69 commit 61d980e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests_install/make_installcheck.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ done <<< "$opts";
149149
ldlib=""
150150
if grep 'CPE_NAME="cpe:/o:alt:.*:p10"\|ALT Server 9.0\|ALT 8 SP Server' /etc/*-release >/dev/null 2>&1; then
151151
ver=`$1/bin/pg_config --version | sed -nE "s/[^0-9]+([0-9]+).*/\1/p"`
152-
if [[ ! -z $ver && $ver == 14 ]]; then
152+
if [ "$ver" == 14 ]; then
153153
ldlib="LD_LIBRARY_PATH=$1/lib:$LD_LIBRARY_PATH"
154154
fi
155155
fi

0 commit comments

Comments
 (0)