William A. Kennington III | 0a01b2a | 2021-05-13 18:38:57 -0700 | [diff] [blame] | 1 | #!/bin/bash |
2 | cd "$(dirname "$0")" || exit | ||||
3 | ./regenerate-meson || exit | ||||
4 | rc=0 | ||||
5 | git --no-pager diff --exit-code -- . || rc=$? | ||||
6 | untracked="$(git ls-files --others --exclude-standard -- .)" || rc=$? | ||||
7 | if [ -n "$untracked" ]; then | ||||
8 | echo "Untracked files:" >&2 | ||||
9 | echo "$untracked" >&2 | ||||
10 | rc=1 | ||||
11 | fi | ||||
12 | if (( rc != 0 )); then | ||||
13 | echo "Generated meson files differ from expected values" >&2 | ||||
14 | exit 1 | ||||
15 | fi |