HomieRoomSensor/host/spelling.sh
2021-12-06 20:18:23 +01:00

13 lines
234 B
Bash
Executable File

#!/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 -w ../*.md
codespell -w *.md
exit 0