From eecaa8a7229a98e91f20bfdc2c0051d239d4d483 Mon Sep 17 00:00:00 2001 From: Basil Peace Date: Fri, 24 Feb 2017 19:16:26 +0300 Subject: [PATCH] Escape quotes in JSON in `shell-local` example --- website/source/docs/post-processors/shell-local.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/post-processors/shell-local.html.md b/website/source/docs/post-processors/shell-local.html.md index 4c91a8abb..d6571264f 100644 --- a/website/source/docs/post-processors/shell-local.html.md +++ b/website/source/docs/post-processors/shell-local.html.md @@ -127,7 +127,7 @@ a tarball, you might wright this: }, { "inline": [ - "jq ".builds[].files[].name" manifest.json | xargs tar cfz artifacts.tgz" + "jq \".builds[].files[].name\" manifest.json | xargs tar cfz artifacts.tgz" ], "type": "shell-local" }