mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-23 21:58:34 +00:00
8 lines
192 B
Bash
Executable File
8 lines
192 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
if grep -qorHbm1 "^`echo -ne '\xef\xbb\xbf'`" po/ src/ data/ ; then
|
|
echo "Found UTF8 BOM(s)!"
|
|
grep -orHbm1 "^`echo -ne '\xef\xbb\xbf'`" po/ src/ data/
|
|
exit 1
|
|
fi
|