Skip to content

Commit

Permalink
Fix unwanted back-quoting in usage string (#259)
Browse files Browse the repository at this point in the history
* Fix unwanted back-quoting in usage string

* Consistent quoting

Co-authored-by: Andriy Knysh <aknysh@users.noreply.github.com>

Co-authored-by: Andriy Knysh <aknysh@users.noreply.github.com>
  • Loading branch information
stoned and aknysh committed Nov 20, 2022
1 parent 9990f93 commit 401d88c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/terraform_generate_backends.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func init() {
)

terraformGenerateBackendsCmd.PersistentFlags().String("components", "",
"Only generate the backend files for the specified `atmos` components (comma-separated values).\n"+
"Only generate the backend files for the specified 'atmos' components (comma-separated values).\n"+
"atmos terraform generate backends --file-template <file_template> --components <component1>,<component2>",
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/terraform_generate_varfiles.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func init() {
)

terraformGenerateVarfilesCmd.PersistentFlags().String("components", "",
"Generate Terraform `.tfvar` files only for the specified 'atmos' components (use comma-separated values to specify multiple components).\n"+
"Generate Terraform '.tfvar' files only for the specified 'atmos' components (use comma-separated values to specify multiple components).\n"+
"atmos terraform generate varfiles --file-template <file_template> --components <component1>,<component2>",
)

Expand Down

0 comments on commit 401d88c

Please sign in to comment.