Fix default dictionary file paths

This commit is contained in:
Carol (Nichols || Goulding) 2018-12-16 22:15:34 -05:00
parent e7d52b93ce
commit a25d1125f2
No known key found for this signature in database
GPG Key ID: D04B39A6CA243902
1 changed files with 2 additions and 2 deletions

View File

@ -41,13 +41,13 @@ aspell --version
shopt -s nullglob
dict_filename=./dictionary.txt
dict_filename=./ci/dictionary.txt
markdown_sources=(./src/*.md)
mode="check"
# aspell repeatedly modifies personal dictionary for some purpose,
# so we should use a copy of our dictionary
dict_path="/tmp/$dict_filename"
dict_path="/tmp/dictionary.txt"
if [[ "$1" == "list" ]]; then
mode="list"