hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 2764ee679fe8d434b201ee88502660d4156211b3
parent 46cec631828b1840c68b3edfb6720b9c7f0b07e5
Author: Eyal Sawady <ecs@d2evs.net>
Date:   Thu, 28 Apr 2022 17:02:29 +0000

.builds/freebsd.yml: use bmake where possible

Signed-off-by: Eyal Sawady <ecs@d2evs.net>

Diffstat:
M.builds/freebsd.yml | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml @@ -20,10 +20,10 @@ tasks: - hare: | cd hare sed -e 's/linux/freebsd/g' < config.example.mk > config.mk - gmake + make - tests: | cd hare - gmake .bin/hare-tests + make .bin/hare-tests - check: | cd hare - gmake check + make check