commit: 301f5b92baccaec91f997b25ddb395da4a65e3b1
parent 7829de7fe2aa543f80f996088f83672d485122af
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sun, 24 Sep 2023 17:02:25 +0200
.builds: "make test" → "make check"
Diffstat:
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml
@@ -13,11 +13,11 @@ tasks:
   - clang: |
       cd utils-std
       CC=clang ./configure
-      make clean test
+      make clean check
   - gcc: |
       cd utils-std
       CC=gcc ./configure
-      make clean test
+      make clean check
 triggers:
   - action: email
     condition: failure
diff --git a/.builds/netbsd.yml b/.builds/netbsd.yml
@@ -13,11 +13,11 @@ tasks:
   - clang: |
       cd utils-std
       CC=clang CRAM=true ./configure
-      DESTDIR=/tmp/clang-destdir make clean test
+      make clean check
   - gcc: |
       cd utils-std
       CC=gcc CRAM=true ./configure
-      DESTDIR=/tmp/gcc-destdir make clean test
+      make clean check
 triggers:
   - action: email
     condition: failure
diff --git a/README.md b/README.md
@@ -1,4 +1,4 @@
-# utils-std: utils-std: Collection of commonly available Unix tools
+# utils-std: Collection of commonly available Unix tools
 Copyright 2017-2023 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me>
 SPDX-License-Identifier: MPL-2.0
 
@@ -8,9 +8,9 @@ Tested on Linux(musl), FreeBSD, NetBSD, OpenBSD: <https://builds.sr.ht/~lanodan/
 
 ## Goals
 - (long-run) Effectively serve as one of the blocks to replace BusyBox, GNU coreutils, …
-- Keep the code readable and hackable
+- Code readability and hackability
 - Portability
-- Efficient, but not without sacrifying the other goals
+- Efficiency, but not without sacrifying the other goals
 
 ## Non-Goals
 - Reimplement complex tools that already have great code or ought to be maintained separately