diff options
author | EuAndreh <eu@euandre.org> | 2021-08-21 05:49:05 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-08-21 05:49:05 -0300 |
commit | de2c1beae4690626597b50abdba9feb38a5be5f7 (patch) | |
tree | 2f9df5267b7f85436c28f02a7eff036ed8b21f5b /aux/workflow/repocheck.sh | |
parent | src/tests-lib.c: Move testing helper function and share it with other files (diff) | |
download | gistatic-de2c1beae4690626597b50abdba9feb38a5be5f7.tar.gz gistatic-de2c1beae4690626597b50abdba9feb38a5be5f7.tar.xz |
aux/: Update
Diffstat (limited to '')
-rwxr-xr-x | aux/workflow/repocheck.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/aux/workflow/repocheck.sh b/aux/workflow/repocheck.sh index 5f83708..688410a 100755 --- a/aux/workflow/repocheck.sh +++ b/aux/workflow/repocheck.sh @@ -167,9 +167,10 @@ assert_clean_checkout() { cd "$CHECKOUTDIR" FILECOUNT="$(find . -type f | wc -l)" - make check clean + make clean public dev-check + make clean if [ "$FILECOUNT" != "$(find . -type f | wc -l)" ]; then - echo 'File count mismatch after "make check clean".' >&2 + echo 'File count mismatch after "make clean".' >&2 echo "Checkout directory: $CHECKOUTDIR" >&2 exit 1 fi |