diff options
Diffstat (limited to 'prepare')
| -rwxr-xr-x | prepare | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,11 @@ +#!/bin/sh +set -e +if [ -z "$(command -v zig)" ]; then + echo "Install zig v0.15.2" + exit 1 +fi +if [[ "$(zig version)" != "0.15.2" ]]; then + echo "Zig version is not 0.15.2. Let's hope this compiles." +fi +zig build -Doptimize=ReleaseFast +echo "Success" |
