From 18a85798c2a9b5426af39c1659f7bc242d1c24d3 Mon Sep 17 00:00:00 2001 From: David E. Wheeler Date: Tue, 24 Sep 2013 15:30:21 -0700 Subject: `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`. --- check_postgres.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'check_postgres.pl') 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', -- cgit v1.2.3