From 3ec9c1eb3c1a0effac8160212a96a8b3d9a960dc Mon Sep 17 00:00:00 2001 From: koalaman Date: Mon, 5 Sep 2016 16:52:14 -0700 Subject: [PATCH] Updated SC2086 (markdown) --- SC2086.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/SC2086.md b/SC2086.md index d22c232..7a6790b 100644 --- a/SC2086.md +++ b/SC2086.md @@ -79,4 +79,8 @@ debug="" 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"}`. \ No newline at end of file +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. \ No newline at end of file