From e47b8306db14ed1ccd66f774bded2d59602d2c88 Mon Sep 17 00:00:00 2001 From: Kamil Dudka Date: Tue, 24 Feb 2015 18:58:55 +0100 Subject: curl-config.in: eliminate double quotes around CURL_CA_BUNDLE Otherwise it expands to: echo ""/etc/pki/tls/certs/ca-bundle.crt"" Detected by ShellCheck: curl-config:74:16: warning: The double quotes around this do nothing. Remove or escape them. [SC2140] --- curl-config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'curl-config.in') diff --git a/curl-config.in b/curl-config.in index 1ddf4c2c7..939872241 100644 --- a/curl-config.in +++ b/curl-config.in @@ -71,7 +71,7 @@ while test $# -gt 0; do ;; --ca) - echo "@CURL_CA_BUNDLE@" + echo @CURL_CA_BUNDLE@ ;; --cc) -- cgit v1.2.1