summaryrefslogtreecommitdiff
path: root/prepare
diff options
context:
space:
mode:
Diffstat (limited to 'prepare')
-rwxr-xr-xprepare11
1 files changed, 0 insertions, 11 deletions
diff --git a/prepare b/prepare
deleted file mode 100755
index fc35462..0000000
--- a/prepare
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/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"