Commit 554a870b81c977c21303ef4eae4e5c4bf1b96e89

Authored by Jay Berkenbilt
1 parent 31a81f6b

spell-check: quote wildcards

Showing 1 changed file with 6 additions and 4 deletions
spell-check
1 -#!/usr/bin/env bash 1 +#!/bin/sh
2 2
3 # Use comments starting with cSpell:ignore to ignore certain words for 3 # Use comments starting with cSpell:ignore to ignore certain words for
4 # the entire file. For source files, you can put these anywhere. For 4 # the entire file. For source files, you can put these anywhere. For
@@ -9,6 +9,8 @@ @@ -9,6 +9,8 @@
9 # that file sorted. 9 # that file sorted.
10 10
11 # cspell can be installed with `npm install -g cspell`. 11 # cspell can be installed with `npm install -g cspell`.
12 -cspell **/*.hh include/qpdf/*.h **/*.cc \  
13 - manual/*.rst manual/*.in manual/_ext/*.py \  
14 - **/CMakeLists.txt ChangeLog README* TODO 12 +
  13 +# cspell does its own expansion of shell wildcards.
  14 +cspell '**/*.hh' 'include/qpdf/*.h' '**/*.cc' \
  15 + 'manual/*.rst' 'manual/*.in' 'manual/_ext/*.py' \
  16 + '**/CMakeLists.txt' ChangeLog 'README*' TODO