mirror of
https://github.com/nicholaswilde/recipes.git
synced 2025-11-01 16:56:02 +00:00
10 lines
201 B
Bash
Executable File
10 lines
201 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -o pipefail
|
|
shopt -s globstar
|
|
shopt -s dotglob nullglob
|
|
|
|
a=$(git rev-parse --show-toplevel)
|
|
cd "${a}"
|
|
npx spellchecker -d dictionary.txt -f {"./cook/**/*.cook","./docs/**/*.md"}
|