From f28d36c888d4517f8cf80d252bfd491dae3a2855 Mon Sep 17 00:00:00 2001 From: krzys_h Date: Sat, 23 Jul 2022 15:16:50 +0200 Subject: [PATCH] Fix typo in the pipelining-builds docs (#11900) Somebody forgot to finish their last sentence... --- website/content/guides/packer-on-cicd/pipelineing-builds.mdx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/website/content/guides/packer-on-cicd/pipelineing-builds.mdx b/website/content/guides/packer-on-cicd/pipelineing-builds.mdx index dbd519eb1..4f35946e9 100644 --- a/website/content/guides/packer-on-cicd/pipelineing-builds.mdx +++ b/website/content/guides/packer-on-cicd/pipelineing-builds.mdx @@ -350,4 +350,6 @@ packer build -only='step1.docker.example' . packer build -only='step2.docker.example' . ``` -To run the pipeline, call pipeline.sh. You can create as many build steps as you want. Each can either inhabit one file +To run the pipeline, call pipeline.sh. You can create as many build steps as +you want. Each can either inhabit one file, or you can put multiple steps in +a single file like shown in the example above.