aboutsummaryrefslogtreecommitdiff
path: root/aux/workflow/repocheck.sh
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-08-21 05:49:05 -0300
committerEuAndreh <eu@euandre.org>2021-08-21 05:49:05 -0300
commitde2c1beae4690626597b50abdba9feb38a5be5f7 (patch)
tree2f9df5267b7f85436c28f02a7eff036ed8b21f5b /aux/workflow/repocheck.sh
parentsrc/tests-lib.c: Move testing helper function and share it with other files (diff)
downloadgistatic-de2c1beae4690626597b50abdba9feb38a5be5f7.tar.gz
gistatic-de2c1beae4690626597b50abdba9feb38a5be5f7.tar.xz
aux/: Update
Diffstat (limited to '')
-rwxr-xr-xaux/workflow/repocheck.sh5
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