]> granicus.if.org Git - curl/commitdiff
curl-config.in: eliminate double quotes around CURL_CA_BUNDLE
authorKamil Dudka <kdudka@redhat.com>
Tue, 24 Feb 2015 17:58:55 +0000 (18:58 +0100)
committerKamil Dudka <kdudka@redhat.com>
Wed, 25 Feb 2015 09:23:07 +0000 (10:23 +0100)
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

index 1ddf4c2c7fac200f7b4446f943f15e7753358dce..93987224168c326e41270e7970e32a9aca739af0 100644 (file)
@@ -71,7 +71,7 @@ while test $# -gt 0; do
         ;;
 
     --ca)
-        echo "@CURL_CA_BUNDLE@"
+        echo @CURL_CA_BUNDLE@
         ;;
 
     --cc)