HomieRoomSensor/host/spelling.sh
2021-11-15 19:03:27 +01:00

12 lines
218 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 ../Readme.md
exit 0