diff options
author | David E. Wheeler | 2013-09-24 22:30:21 +0000 |
---|---|---|
committer | David E. Wheeler | 2013-09-24 22:30:21 +0000 |
commit | 18a85798c2a9b5426af39c1659f7bc242d1c24d3 (patch) | |
tree | db9433b9c0ec0ae10530bba6f98b15c4e292b971 /check_postgres.pl | |
parent | fe93141f354c1b71f302f98328a9bab91bc37176 (diff) |
`curl` does not like `=` between an option and its value.
This gets the `t/02_new_version_cp.t` to pass on systems that use `curl`.
Diffstat (limited to 'check_postgres.pl')
-rwxr-xr-x | check_postgres.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/check_postgres.pl b/check_postgres.pl index ad5274aaf..de9e15379 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -72,7 +72,7 @@ our $get_method_timeout = 30; our @get_methods = ( "GET -t $get_method_timeout -H 'Pragma: no-cache'", "wget --quiet --timeout=$get_method_timeout --no-cache -O -", - "curl --silent --max-time=$get_method_timeout -H 'Pragma: no-cache'", + "curl --silent --max-time $get_method_timeout -H 'Pragma: no-cache'", "fetch -q -T $get_method_timeout -o -", "lynx --connect-timeout=$get_method_timeout --dump", 'links -dump', |