summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
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