shake

minimal build system that generates Ninja build files

git clone https://9o.is/git/shake.git

commit 203aa3084895b7a63ed5cf5d5b52061a8cd6faa1
parent 83fece358df05f6c5eff7cfed6e6fa159aa87829
Author: Jul <jul@9o.is>
Date:   Thu, 12 Mar 2026 13:31:09 +0800

pipe error messages to stderr

Diffstat:
Mshake | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/shake b/shake @@ -243,7 +243,7 @@ inline() { } error() { - printf "Error gen $DIR: %s\n" "$*" + printf "shake: %s: %s\n" "$DIR" "$*" >&2 exit 1 }