Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit addbd8e

Browse files
committed
Fixed condition for pg_checksums
1 parent beec442 commit addbd8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/helpers/postgres_nsis_installer.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ IF "%PG_MAJOR_VERSION%" == "9.6" (
113113
cat server.files > allserver.files
114114
type client.files > allclient.files
115115
)
116-
IF "%PG_MAJOR_VERSION%" == "12" (
116+
IF %PG_MAJOR_VERSION% GEQ 12 (
117117
sed "s/pg_verify_checksums/pg_checksums/" allserver.files > allserver-12.files
118118
mv allserver-12.files allserver.files
119119
)

0 commit comments

Comments
 (0)