mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-09 16:04:18 +00:00
7 lines
333 B
Bash
Executable File
7 lines
333 B
Bash
Executable File
#!/bin/bash
|
|
# Install isutf8 program (from package "moreutils" at least in linux mint)
|
|
# in order to use this script
|
|
set -e
|
|
find src/ -type f -print0 | xargs -0 isutf8 --
|
|
find data/ -not -name "*.png" -not -name "*.ogg" -not -name "*.jpg" -not -name "*.wav" -not -name "*.gif" -not -name "*.xcf" -type f -print0 | xargs -0 isutf8 --
|