while-true-do / ansible-skeleton

The skeleton to create new ansible roles.
BSD 3-Clause "New" or "Revised" License
7 stars 0 forks source link

BUG: test-spelling path dependency #12

Closed dschier-wtd closed 6 years ago

dschier-wtd commented 6 years ago

Type of Report

Bug

Actual behaviour

Due to the below snippet the spell-check can fail.

BADWORDS=$(sed '/^```/,/^```/d' "$WTD_SCRIPT_DIR/../README.md" | aspell --lang=en --encoding=utf-8\
        --personal=./tests/.aspell.en.pws list)

Expected behaviour

It shoukd be:

BADWORDS=$(sed '/^```/,/^```/d' "$WTD_SCRIPT_DIR/../README.md" | aspell --lang=en --encoding=utf-8\
        --personal="$WTD_SCRIPT_DIR/.aspell.en.pws" list)

I will start working on this in https://github.com/while-true-do/ansible-galaxy-skeleton/tree/fb-daniel-wtd

dschier-wtd commented 6 years ago

fixed in #13