diff options
author | EuAndreh <eu@euandre.org> | 2022-01-22 14:16:26 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-01-22 14:16:26 -0300 |
commit | e0189fdb142fd0e723fd908953d8ba5767d4a6bb (patch) | |
tree | 49cfbfea51781bfb887e99ba925e0b73d6cd9521 | |
parent | aux/workflow/style.css: Add clearer marking of code blocks (diff) | |
download | git-permalink-e0189fdb142fd0e723fd908953d8ba5767d4a6bb.tar.gz git-permalink-e0189fdb142fd0e723fd908953d8ba5767d4a6bb.tar.xz |
aux/{workflow/repocheck,ci/ci-build}.sh: Stop redundantly building "public" target
-rwxr-xr-x | aux/ci/ci-build.sh | 2 | ||||
-rwxr-xr-x | aux/workflow/repocheck.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/aux/ci/ci-build.sh b/aux/ci/ci-build.sh index 5e5e656..8d18252 100755 --- a/aux/ci/ci-build.sh +++ b/aux/ci/ci-build.sh @@ -59,5 +59,5 @@ EOF RUNNER='sh -c' fi - $RUNNER 'make clean public dev-check' + $RUNNER 'make clean dev-check' } 2>&1 | tee "$LOGFILE" diff --git a/aux/workflow/repocheck.sh b/aux/workflow/repocheck.sh index b95272d..3cdad66 100755 --- a/aux/workflow/repocheck.sh +++ b/aux/workflow/repocheck.sh @@ -141,7 +141,7 @@ assert_clean_clone() { git clone "$REPODIR" . - make clean public dev-check + make clean dev-check assert_no_diffs make clean assert_no_diffs @@ -171,7 +171,7 @@ assert_clean_checkout() { cd "$CHECKOUTDIR" FILECOUNT="$(find . -type f | wc -l)" - make clean public dev-check + make clean dev-check make clean if [ "$FILECOUNT" != "$(find . -type f | wc -l)" ]; then echo 'File count mismatch after "make clean".' >&2 |