Skip to content

Commit

Permalink
curl-config.in: eliminate double quotes around CURL_CA_BUNDLE
Browse files Browse the repository at this point in the history
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]
  • Loading branch information
kdudka committed Feb 25, 2015
1 parent 4909f7c commit e47b830
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion curl-config.in
Expand Up @@ -71,7 +71,7 @@ while test $# -gt 0; do
;;

--ca)
echo "@CURL_CA_BUNDLE@"
echo @CURL_CA_BUNDLE@
;;

--cc)
Expand Down

0 comments on commit e47b830

Please sign in to comment.