Script to collect warnings from "check_translations.sh"

So we can commit it, for quick examination & later reference.
This commit is contained in:
Bill Kendrick 2022-09-09 01:30:42 -07:00
parent e8241d5b6a
commit cb7024ddac

View file

@ -0,0 +1,11 @@
#!/bin/bash
echo
echo Collecting warnings from \"check_translations.sh\" into \"check_translations_warnings.txt\"
echo
rm -f check_translations_warnings.txt
date --rfc-3339=s > check_translations_warnings.txt
./check_translations.sh | grep --line-buffered _WARNING_ | tee -a check_translations_warnings.txt
echo
echo DONE