Fix bad merge from master

This commit is contained in:
Alfred Gedeon 2020-09-17 12:27:10 -07:00
parent fb7bd99344
commit 56a33d8c2e

View file

@ -19,6 +19,21 @@ jobs:
uses: actions/checkout@v2 uses: actions/checkout@v2
with: with:
path: ./kernel path: ./kernel
- name: Install spell
run: |
sudo apt-get install spell
sudo apt-get install util-linux
- name: Check spelling
run: |
PATH=$PATH:main/tools/spell
# Make sure that the portable directory is not included in the spellcheck.
sed -i 's/find $DIRNAME/find $DIRNAME -not -path '*portable*'/g' main/tools/spell/find-unknown-comment-words
find-unknown-comment-words --directory kernel/
if [ "$?" = "0" ]; then
exit 0
else
exit 1
fi
url-check: url-check:
runs-on: ubuntu-latest runs-on: ubuntu-latest
- name: URL Checker - name: URL Checker