12 lines
218 B
Bash
12 lines
218 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
whereis -b codespell | grep "/codespell" >> /dev/null
|
||
|
if [ $? -ne 0 ]; then
|
||
|
echo "codespell needs to be installed"
|
||
|
exit 1
|
||
|
fi
|
||
|
codespell -w ../src/*
|
||
|
codespell -w ../include/*
|
||
|
codespell ../Readme.md
|
||
|
exit 0
|