#!/usr/bin/env bash # Build helper: zig build emits an enormous "failed command" line on error, # which drowns out the actual diagnostics. Strip it. cd "$(dirname "$0")" nix develop --command zig build "$@" 2>&1 \ | grep -v "^warning: Git tree" \ | sed '/^failed command:/,$d'