From a4b5588e0f041fefafd5cecc3c401e403951ee59 Mon Sep 17 00:00:00 2001 From: Kameron Kenny Date: Wed, 13 Feb 2019 20:06:05 -0500 Subject: [PATCH] spelling corrections --- _posts/2019-02-13-chef-deprecations.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/2019-02-13-chef-deprecations.md b/_posts/2019-02-13-chef-deprecations.md index a7dc7b2..63f1e9f 100644 --- a/_posts/2019-02-13-chef-deprecations.md +++ b/_posts/2019-02-13-chef-deprecations.md @@ -26,13 +26,13 @@ log_file='deprecations.log' for cookbook in `ls -d */`; do printf "${cookbook}\n=================" | tee -a $log_file - chef exec foodcritic -t deprecated ${i} | tee -a $log_file + chef exec foodcritic -t deprecated ${cookbook} | tee -a $log_file printf "\n" | tee -a $log_file done {% endhighlight %} This will: -- Itterate over all the directories in the current directory +- Iterate over all the directories in the current directory - Assume they're cookbooks - Execute the `deprecations` Foodcritic tests - Print the results to the screen