Skip to content

Commit

Permalink
Fix braces in tutorial 😭
Browse files Browse the repository at this point in the history
In #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
  • Loading branch information
bobcatfish committed Aug 16, 2019
1 parent f41f8dd commit 35f4a44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`,
Expand Down

0 comments on commit 35f4a44

Please sign in to comment.