From 35f4a4460c2d8df2ba17c644366904bc3ca157fb Mon Sep 17 00:00:00 2001 From: Christie Wilson Date: Fri, 16 Aug 2019 10:55:56 -0400 Subject: [PATCH] =?UTF-8?q?Fix=20braces=20in=20tutorial=20=F0=9F=98=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In https://github.com/tektoncd/pipeline/pull/1172 I tried to update these docs to use the new brace syntax but I only half updated this example :( And we have no tests for examples embedded in our docs so we can't catch this. Thanks for the bug report @moficodes !!! Fixes #1199 --- docs/tutorial.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index 1dc15b884ec..8b11b0ca27a 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -190,9 +190,9 @@ spec: command: - /kaniko/executor args: - - --dockerfile=$(inputs.params.pathToDockerFile} - - --destination=$(outputs.resources.builtImage.url} - - --context=$(inputs.params.pathToContext} + - --dockerfile=$(inputs.params.pathToDockerFile) + - --destination=$(outputs.resources.builtImage.url) + - --context=$(inputs.params.pathToContext) ``` `TaskRun` binds the inputs and outputs to already defined `PipelineResources`,