From 38d0bc818d3cc6dda9e443826e93e65597c0d299 Mon Sep 17 00:00:00 2001 From: craigpero Date: Fri, 20 Jan 2023 12:59:05 -0600 Subject: [PATCH] Update index.mdx In trying the example, I found that you have to type "*.second-example" for the expected results. I took the command line on line #78 literal and it didn't work as typed. When I used my proposed change... it worked for me. Alternatively, "*.second*" works but that could grab builders that were not intended. --- .../content/docs/templates/hcl_templates/blocks/build/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/docs/templates/hcl_templates/blocks/build/index.mdx b/website/content/docs/templates/hcl_templates/blocks/build/index.mdx index 302ab5f19..b83ede217 100644 --- a/website/content/docs/templates/hcl_templates/blocks/build/index.mdx +++ b/website/content/docs/templates/hcl_templates/blocks/build/index.mdx @@ -75,7 +75,7 @@ matching **builders** (source) or all referenced builders 'except' the matching ones, for example with the same config file: ```shell-session -> packer build -only "*.second" ./folder +> packer build -only "*.second-example" ./folder Build 'null.second-example' finished. Build 'a.null.second-example' finished.