diff options
author | Tom Lane | 2022-05-12 19:17:30 +0000 |
---|---|---|
committer | Tom Lane | 2022-05-12 19:17:30 +0000 |
commit | 23e7b38bfe396f919fdb66057174d29e17086418 (patch) | |
tree | 335c3962ef8afe0f6193d0413dbc51642276b147 /config/check_modules.pl | |
parent | 93909599cdba64c8759d646983c0a4ef93de1e50 (diff) |
Pre-beta mechanical code beautification.
Run pgindent, pgperltidy, and reformat-dat-files.
I manually fixed a couple of comments that pgindent uglified.
Diffstat (limited to 'config/check_modules.pl')
-rw-r--r-- | config/check_modules.pl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/config/check_modules.pl b/config/check_modules.pl index 470c3e9c144..611f3a673fd 100644 --- a/config/check_modules.pl +++ b/config/check_modules.pl @@ -21,8 +21,7 @@ diag("Test::More::VERSION: $Test::More::VERSION"); diag("Time::HiRes::VERSION: $Time::HiRes::VERSION"); # Check that if prove is using msys perl it is for an msys target -ok(($ENV{__CONFIG_HOST_OS__} || "") eq 'msys', - "Msys perl used for correct target") - if $Config{osname} eq 'msys'; +ok( ($ENV{__CONFIG_HOST_OS__} || "") eq 'msys', + "Msys perl used for correct target") if $Config{osname} eq 'msys'; ok(1); done_testing(); |