From 5b34298e7a9bb0b3ff35d47a3811435441616503 Mon Sep 17 00:00:00 2001 From: Ryan Punt Date: Wed, 27 Oct 2021 08:26:23 -0500 Subject: missed a variable reference in 'dictionary missing' error Signed off by: Ryan Punt --- tasks/spellcheck.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tasks') 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" -- cgit v1.2.1