| Patrick Williams | f6bd604 | 2020-12-14 15:10:47 -0600 | [diff] [blame] | 1 | #!/bin/bash | 
| William A. Kennington III | 08baf48 | 2021-06-05 12:27:15 -0700 | [diff] [blame^] | 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 | 
| Patrick Williams | f6bd604 | 2020-12-14 15:10:47 -0600 | [diff] [blame] | 15 | fi |