Updated SC2086 (markdown)

koalaman
2016-09-05 16:52:14 -07:00
parent cb0e8deb6e
commit 3ec9c1eb3c

@@ -79,4 +79,8 @@ debug=""
bash ${debug:+"-x"} script bash ${debug:+"-x"} script
``` ```
This is better than an unquoted value because the alternative value can be properly quoted, e.g. `wget ${output:+ -o "$output"}`. This is better than an unquoted value because the alternative value can be properly quoted, e.g. `wget ${output:+ -o "$output"}`.
---
As always, this warning can be [[ignore]]d on a case-by-case basis.