summaryrefslogtreecommitdiff
path: root/tasks
diff options
context:
space:
mode:
authorRyan Punt <ryan@mirum.org>2021-10-27 08:26:23 -0500
committerRyan Punt <ryan@mirum.org>2021-10-27 08:26:23 -0500
commit5b34298e7a9bb0b3ff35d47a3811435441616503 (patch)
treef0c9de58f4b2c0cb8beba713eff53dd961e58e7e /tasks
parent4a799c8e78d32268c237a3c26f0df3a403fe2b11 (diff)
downloadchef-5b34298e7a9bb0b3ff35d47a3811435441616503.tar.gz
missed a variable reference in 'dictionary missing' error
Signed off by: Ryan Punt <ryan@mirum.org>
Diffstat (limited to 'tasks')
-rw-r--r--tasks/spellcheck.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/spellcheck.rb b/tasks/spellcheck.rb
index 9a4aee3e77..d43495a7ae 100644
--- a/tasks/spellcheck.rb
+++ b/tasks/spellcheck.rb
@@ -44,7 +44,7 @@ namespace :spellcheck do
chef_dictionary = "chef_dictionary.txt"
unless File.readable?(chef_dictionary)
- abort "Dictionary file '#{config_file}' not found, skipping spellcheck"
+ abort "Dictionary file '#{chef_dictionary}' not found, skipping spellcheck"
end
config_file = "cspell.json"