Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Wildcards require single or double quotes for
zsh
shell (#5151)
[Preview](https://docs-getdbt-com-git-dbeatty10-patch-3-dbt-labs.vercel.app/reference/node-selection/methods#the-semantic_model-method) ## What are you changing in this pull request and why? This code example doesn't work for me: ```shell dbt list --select semantic_model:* ``` It gives the following error: ``` zsh: no matches found: semantic_model:* ``` But adding double quotes works great: ```shell dbt list --select "semantic_model:*" ``` To keep things consistent, I also added double quotes to the two other examples that were missing them. ## Checklist - [x] Review the [Content style guide](https://github.com/dbt-labs/docs.getdbt.com/blob/current/contributing/content-style-guide.md) so my content adheres to these guidelines.
- Loading branch information