From d856f678732b26d0ad13d584412257f6ab7a7493 Mon Sep 17 00:00:00 2001 From: Pete Higgins Date: Tue, 5 May 2020 15:52:51 -0700 Subject: Fix spellcheck tasks to use cspell globs rather than bash. Signed-off-by: Pete Higgins --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Rakefile') diff --git a/Rakefile b/Rakefile index eb39315645..496ae73594 100644 --- a/Rakefile +++ b/Rakefile @@ -114,11 +114,11 @@ if `command -v cspell`.empty? else namespace :spellcheck do task :run do - sh 'cspell **/* *.md' + sh 'cspell "**/*" "*.md"' end task :unknown_words do - sh 'cspell **/* *.md --wordsOnly --no-summary | sort | uniq' + sh 'cspell "**/*" "*.md" --wordsOnly --no-summary | sort | uniq' end end -- cgit v1.2.1