summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-08-06 13:18:13 -0600
committermo khan <mo@mokhan.ca>2025-08-14 16:41:22 -0600
commit034d58bf07c55fa5ae7a347defda8cbacf811027 (patch)
treedc8f733b1d66d369455096d3a61d508367a9371f /bin
parent0b7103e850232eaab4e87a0322817055e55dbe51 (diff)
chore: update makefile and build scripts
Diffstat (limited to 'bin')
-rwxr-xr-xbin/mise13
-rwxr-xr-xbin/zed2
2 files changed, 14 insertions, 1 deletions
diff --git a/bin/mise b/bin/mise
new file mode 100755
index 0000000..7f6c85b
--- /dev/null
+++ b/bin/mise
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+set -e
+[ -n "$DEBUG" ] && set -x
+
+cd "$(dirname "$0")/.."
+
+if ! command -v mise >/dev/null 2>&1; then
+ echo "Install mise: https://github.com/jdx/mise"
+ exit 1
+fi
+
+exec mise $@
diff --git a/bin/zed b/bin/zed
index fbe7834..1e71a68 100755
--- a/bin/zed
+++ b/bin/zed
@@ -10,4 +10,4 @@ if ! command -v zed >/dev/null 2>&1; then
exit 1
fi
-./bin/tool godotenv -f .env.local,.env go tool zed --insecure $@
+./bin/tool godotenv -f .env.local,.env zed --insecure $@