Skip to content

Commit

Permalink
docs: Fix README function rm_terraform to not erase .terraform-docs…
Browse files Browse the repository at this point in the history
….yaml (#345)
  • Loading branch information
drewmullen committed Feb 22, 2022
1 parent 458fb28 commit 83b39d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ Example:
```bash
echo "
function rm_terraform {
find . -name ".terraform*" -print0 | xargs -0 rm -r
find . \( -iname ".terraform*" ! -iname ".terraform-docs*" \) -print0 | xargs -0 rm -r
}
" >>~/.bashrc
Expand Down Expand Up @@ -540,7 +540,7 @@ Example:
```bash
echo "
function rm_terraform {
find . -name ".terraform*" -print0 | xargs -0 rm -r
find . \( -iname ".terraform*" ! -iname ".terraform-docs*" \) -print0 | xargs -0 rm -r
}
" >>~/.bashrc
Expand Down

0 comments on commit 83b39d9

Please sign in to comment.