We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5863115 commit c697d8aCopy full SHA for c697d8a
src/test/perl/PostgresNode.pm
@@ -1237,9 +1237,10 @@ sub _set_pg_version
1237
# complain about that, too.
1238
$pg_config = "$inst/bin/pg_config";
1239
BAIL_OUT("pg_config not found: $pg_config")
1240
- unless -e $pg_config;
+ unless -e $pg_config
1241
+ or ($TestLib::windows_os and -e "$pg_config.exe");
1242
BAIL_OUT("pg_config not executable: $pg_config")
- unless -x $pg_config;
1243
+ unless $TestLib::windows_os or -x $pg_config;
1244
1245
# Leave $pg_config install_path qualified, to be sure we get the right
1246
# version information, below, or die trying
0 commit comments