summaryrefslogtreecommitdiff
path: root/curl-config.in
diff options
context:
space:
mode:
authorKamil Dudka <kdudka@redhat.com>2015-02-24 18:58:55 +0100
committerKamil Dudka <kdudka@redhat.com>2015-02-25 10:23:07 +0100
commite47b8306db14ed1ccd66f774bded2d59602d2c88 (patch)
tree426fd98d9de43ad458931aa3a335056329f888a0 /curl-config.in
parent4909f7c795a4490dbb29e89b8b1564af86ee5999 (diff)
downloadcurl-e47b8306db14ed1ccd66f774bded2d59602d2c88.tar.gz
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]
Diffstat (limited to 'curl-config.in')
-rw-r--r--curl-config.in2
1 files changed, 1 insertions, 1 deletions
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)